flake/nixos/nix/gc.nix
2023-10-15 08:51:56 +08:00

19 lines
328 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";
};
optimise = {
automatic = true;
dates = [ "03:45" ];
};
};
}