forked from lix-project/lix
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:
parent
e56f71edaf
commit
6c4ac29917
|
@ -43,7 +43,7 @@ Settings::Settings()
|
||||||
checkRootReachability = false;
|
checkRootReachability = false;
|
||||||
gcKeepOutputs = false;
|
gcKeepOutputs = false;
|
||||||
gcKeepDerivations = true;
|
gcKeepDerivations = true;
|
||||||
autoOptimiseStore = true;
|
autoOptimiseStore = false;
|
||||||
envKeepDerivations = false;
|
envKeepDerivations = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue