tweak(nix-gc): automatically delete old generations

This commit is contained in:
Infinidoge 2022-05-11 14:00:09 -04:00
parent 1b4fe340b8
commit a49f007542

View file

@ -16,7 +16,10 @@ with lib;
sandbox = true; sandbox = true;
}; };
gc.automatic = true; gc = {
automatic = true;
options = "--delete-older-than 3d";
};
optimise.automatic = true; optimise.automatic = true;