diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2015-06-22 15:47:40 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-07-02 22:52:59 +0200 |
commit | 4e5ab98d6d14f8b0e3bd1d77b2f4f2354e7a49a8 (patch) | |
tree | 0f346d821244f22fee8c3dedd92b14c5e42ec4d0 | |
parent | 60bda60fc06135aa97a93301b1a9e2270768f5b3 (diff) | |
download | guix-4e5ab98d6d14f8b0e3bd1d77b2f4f2354e7a49a8.tar.gz |
Make /nix/var/nix/db/reserved bigger
Issue #564.
-rw-r--r-- | nix/libstore/globals.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/libstore/globals.cc b/nix/libstore/globals.cc index bb08a7d0b0..07f23d469c 100644 --- a/nix/libstore/globals.cc +++ b/nix/libstore/globals.cc @@ -36,7 +36,7 @@ Settings::Settings() buildTimeout = 0; useBuildHook = true; printBuildTrace = false; - reservedSize = 1024 * 1024; + reservedSize = 8 * 1024 * 1024; fsyncMetadata = true; useSQLiteWAL = true; syncBeforeRegistering = false; |