forked from emily/nixfiles
Increase builder min-free
This commit is contained in:
parent
5068006114
commit
28c7dcc1da
1 changed files with 2 additions and 2 deletions
|
@ -6,8 +6,8 @@
|
||||||
#system-features = [ "nixos-test" "benchmark" "big-parallel" "kvm" ] ++ lib.optionals pkgs.hostPlatform.isx86_64 [ "gccarch-x86-64-v3" ];
|
#system-features = [ "nixos-test" "benchmark" "big-parallel" "kvm" ] ++ lib.optionals pkgs.hostPlatform.isx86_64 [ "gccarch-x86-64-v3" ];
|
||||||
};
|
};
|
||||||
nix.extraOptions = ''
|
nix.extraOptions = ''
|
||||||
min-free = ${builtins.toString (4096 * 1024 * 1024)}
|
min-free = ${builtins.toString (16384 * 1024 * 1024)}
|
||||||
max-free = ${builtins.toString (8192 * 1024 * 1024)}
|
max-free = ${builtins.toString (32768 * 1024 * 1024)}
|
||||||
max-substitution-jobs = 20
|
max-substitution-jobs = 20
|
||||||
max-silent-time = 14400
|
max-silent-time = 14400
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue