Turn on automatic garbage collection

This commit is contained in:
Annika Merris 2024-07-13 13:19:41 -04:00
parent 91d9e2b0af
commit 9afafb3f3e

View file

@ -101,6 +101,12 @@ inputs.nixpkgs.lib.nixosSystem {
};
};
};
nix.gc = {
automatic = true;
randomizedDelaySec = "14m";
options = "--delete-older-than 10d";
};
}
];
}