made default nix gc overridable
This commit is contained in:
parent
81bca4e2a7
commit
b93a119776
1 changed files with 2 additions and 2 deletions
|
|
@ -118,8 +118,8 @@ in
|
||||||
#virtualisation.podman.autoPrune.enable = config.virtualisation.podman.enable;
|
#virtualisation.podman.autoPrune.enable = config.virtualisation.podman.enable;
|
||||||
|
|
||||||
nix.gc = {
|
nix.gc = {
|
||||||
automatic = true;
|
automatic = lib.mkDefault true;
|
||||||
options = "--delete-older-than 2d";
|
options = lib.mkDefault "--delete-older-than 2d";
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.cleanTmpDir = true;
|
boot.cleanTmpDir = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue