autogc now deletes gens older than 60 days

This commit is contained in:
Tasia Iso 2025-02-01 22:46:13 +01:00
parent 2c372ac591
commit 3be790a70e
Signed by: tasiaiso
SSH key fingerprint: SHA256:KiRjUay5C9i6objsEOIycygBHn54pDBB3Lj7fyJ0Elw

View file

@ -2,6 +2,6 @@
nix.gc = { nix.gc = {
automatic = true; automatic = true;
dates = "weekly"; dates = "weekly";
options = "--delete-older-than 30d"; options = "--delete-older-than 60d";
}; };
} }