homelab/modules/gc.nix
2026-05-19 13:27:53 +09:00

13 lines
183 B
Nix

{ ... }:
{
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 14d";
};
nix.optimise.automatic = true;
boot.tmp.cleanOnBoot = true;
}