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

12 lines
226 B
Nix
Executable file

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