flake/nixos/profiles/core/nix/gc.nix
2023-11-17 13:38:25 +08:00

19 lines
342 B
Nix
Executable file

{...}: {
nix = {
### Auto hard linking
settings.auto-optimise-store = true;
### Automatically delete older NixOS builds
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
### optimiser
optimise = {
automatic = true;
dates = ["03:45"];
};
};
}