nixfiles/profiles/nix-gc.nix

9 lines
158 B
Nix

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