diff options
author | DavHau <hsngrmpf+github@gmail.com> | 2021-03-23 10:19:00 +0700 |
---|---|---|
committer | DavHau <hsngrmpf+github@gmail.com> | 2021-03-23 10:19:00 +0700 |
commit | 0f40561c78bb5566b42d054620b0576e14fe4627 (patch) | |
tree | 79d54b1f647417c46e1f94a5db2eb974dc1452a3 | |
parent | e16431b4665c0362f66bace7734fed0a6c0692d5 (diff) |
nix.conf builders: refer to manual page
-rw-r--r-- | src/libstore/globals.hh | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh index bf0767dfa..3e4ead76c 100644 --- a/src/libstore/globals.hh +++ b/src/libstore/globals.hh @@ -207,15 +207,8 @@ public: Setting<std::string> builders{ this, "@" + nixConfDir + "/machines", "builders", R"( - A semicolon-separated list of build machines, where each machine follows this format: - - {protocol}://{user}@{host} [{comma sep. systems} - {maxJobs} {speedFactor} {comma sep. features}] - - Examples: - - ssh://root@builder1.com - - ssh://root@builder2.com x86_64-linux,aarch64-linux - 40 20 nixos-test,benchmark,big-parallel,kvm + A semicolon-separated list of build machines. + For the exact format and examples, see [the manual chapter on remote builds](../advanced-topics/distributed-builds.md) )"}; Setting<bool> buildersUseSubstitutes{ |