Auto-optimise Nix store
This commit is contained in:
parent
414da75426
commit
e24cb663eb
|
@ -68,14 +68,16 @@
|
|||
allowReboot = true;
|
||||
};
|
||||
|
||||
# Run Nix garbage collector
|
||||
# Run Nix garbage collector, while avoiding recompilation
|
||||
nix = {
|
||||
autoOptimiseStore = true;
|
||||
gc = {
|
||||
automatic = true;
|
||||
options = "--delete-older-than 14d";
|
||||
};
|
||||
extraOptions = ''
|
||||
keep-outputs = true
|
||||
keep-derivations = true
|
||||
gc-keep-outputs = true
|
||||
'';
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue