nix: Only keep outputs and drvs on full systems

This commit is contained in:
Simon Bruder 2021-02-05 17:19:19 +01:00
parent bfd192b2a8
commit 998d47fd1a
Signed by: simon
GPG key ID: 8D3C82F9F309F8EC

View file

@ -111,7 +111,7 @@ in
# On-the-fly optimisation of nix store
autoOptimiseStore = true;
# Keep output of derivations with gc root
extraOptions = ''
extraOptions = lib.optionalString config.sbruder.full ''
keep-outputs = true
keep-derivations = true
'';