nixos-config/modules/system/auto-gc.nix
2024-03-12 21:10:35 +01:00

15 lines
262 B
Nix

{
config,
lib,
...
}: {
options.myConfig.auto-gc.enable = lib.mkEnableOption "";
config = lib.mkIf config.myConfig.auto-gc.enable {
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
};
}