dotfiles.nix/nixos/modules/nix/optimise.nix

7 lines
136 B
Nix

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