flake/darwin/nix/gc.nix

17 lines
229 B
Nix
Raw Normal View History

2023-10-14 02:20:42 +00:00
{ ... }:
{
nix = {
### optimiser
settings = {
auto-optimise-store = true;
};
### auto delete older NixOS builds
gc = {
automatic = true;
options = "--delete-older-than 7d";
};
};
}