flake/darwin/nix/gc.nix

16 lines
229 B
Nix
Executable file

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