flake/darwin/profiles/common/core/nix/gc.nix

12 lines
219 B
Nix

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