Increase builder min-free

This commit is contained in:
emily 2024-08-03 11:24:06 +02:00
parent 5068006114
commit 28c7dcc1da
Signed by: emily
GPG key ID: F6F4C66207FCF995

View file

@ -6,8 +6,8 @@
#system-features = [ "nixos-test" "benchmark" "big-parallel" "kvm" ] ++ lib.optionals pkgs.hostPlatform.isx86_64 [ "gccarch-x86-64-v3" ];
};
nix.extraOptions = ''
min-free = ${builtins.toString (4096 * 1024 * 1024)}
max-free = ${builtins.toString (8192 * 1024 * 1024)}
min-free = ${builtins.toString (16384 * 1024 * 1024)}
max-free = ${builtins.toString (32768 * 1024 * 1024)}
max-substitution-jobs = 20
max-silent-time = 14400
'';