nix settings: switch keep-outputs and keep-derivations to false
Attempt to save on disk space a bit so testing how this affects things
This commit is contained in:
parent
ac5e745c63
commit
5cdd751ec9
|
@ -95,8 +95,8 @@
|
||||||
};
|
};
|
||||||
optimise.automatic = true;
|
optimise.automatic = true;
|
||||||
extraOptions = ''
|
extraOptions = ''
|
||||||
keep-outputs = true
|
keep-outputs = false
|
||||||
keep-derivations = true
|
keep-derivations = false
|
||||||
min-free = ${toString (100 * 1024 * 1024)}
|
min-free = ${toString (100 * 1024 * 1024)}
|
||||||
max-free = ${toString (1024 * 1024 * 1024)}
|
max-free = ${toString (1024 * 1024 * 1024)}
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue