Disable auto store optimisation for now

I've seen operations like "nix-store --import" take much longer on one
system.  So default to off until I've investigated this a bit further.
This commit is contained in:
Eelco Dolstra 2012-09-13 10:28:20 -04:00
parent e56f71edaf
commit 6c4ac29917
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ Settings::Settings()
checkRootReachability = false;
gcKeepOutputs = false;
gcKeepDerivations = true;
autoOptimiseStore = true;
autoOptimiseStore = false;
envKeepDerivations = false;
}