nix: Only keep outputs and drvs on full systems

pull/48/head
Simon Bruder 2021-02-05 17:19:19 +01:00
parent bfd192b2a8
commit 998d47fd1a
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 1 additions and 1 deletions

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
'';