home: make gc less aggressive (keep 90 days)

This commit is contained in:
Primrose 2024-12-08 21:58:59 +01:00
parent 1d4f2a85c4
commit 8eaa11e248
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA

View file

@ -7,7 +7,7 @@
{ {
nix.gc = lib.mkIf (!nixosConfig.nix.gc.automatic or false) { nix.gc = lib.mkIf (!nixosConfig.nix.gc.automatic or false) {
automatic = true; automatic = true;
frequency = "weekly"; frequency = "daily";
options = "--delete-older-than 15d"; options = "--delete-older-than 90d";
}; };
} }