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:
Evie Litherland-Smith 2024-01-29 05:29:29 +00:00
parent ac5e745c63
commit 5cdd751ec9

View file

@ -95,8 +95,8 @@
};
optimise.automatic = true;
extraOptions = ''
keep-outputs = true
keep-derivations = true
keep-outputs = false
keep-derivations = false
min-free = ${toString (100 * 1024 * 1024)}
max-free = ${toString (1024 * 1024 * 1024)}
'';