nixfiles/profiles/nixos/nixGC.nix
2024-07-24 14:13:59 +01:00

9 lines
156 B
Nix

{...}: {
nix.settings.auto-optimise-store = true;
nix.gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 10d";
};
}