We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa8ae2d commit d0a378eCopy full SHA for d0a378e
nix/master.nix
@@ -134,7 +134,7 @@ in
134
),
135
url=${builtins.toJSON config.services.buildbot-master.buildbotUrl},
136
nix_eval_max_memory_size=${builtins.toJSON cfg.evalMaxMemorySize},
137
- nix_eval_worker_count=${builtins.toJSON cfg.evalWorkerCount},
+ nix_eval_worker_count=${if cfg.evalWorkerCount == null then "None" else builtins.toJSON cfg.evalWorkerCount},
138
nix_supported_systems=${builtins.toJSON cfg.buildSystems},
139
outputs_path=${if cfg.outputsPath == null then "None" else builtins.toJSON cfg.outputsPath},
140
)
0 commit comments