File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 247247 Whether Determinate Nix's native Linux builder is enabled.
248248 '' ;
249249 } ;
250+ builder . memoryBytes = lib . mkOption {
251+ type = types . ints . positive ;
252+ default = 8000000000 ;
253+ description = ''
254+ How much memory, in bytes, to allocate to the native Linux builder process.
255+ '' ;
256+ } ;
257+ builder . cpuCount = lib . mkOption {
258+ type = types . ints . positive ;
259+ default = 1 ;
260+ description = ''
261+ The number of CPUs to allocate to the native Linux builder process. We do NOT recommend changing this value.
262+ '' ;
263+ } ;
250264 garbageCollector . strategy = lib . mkOption {
251265 type = types . nullOr (
252266 types . enum [
755769 "builder"
756770 "state"
757771 ]
772+ [
773+ "builder"
774+ "memoryBytes"
775+ ]
776+ [
777+ "builder"
778+ "cpuCount"
779+ ]
758780 [
759781 "garbageCollector"
760782 "strategy"
You can’t perform that action at this time.
0 commit comments