add information on the build-hook
setting
add a warning that you probably never want to change this.
This commit is contained in:
parent
92611e6e4c
commit
fd0e21475c
|
@ -201,7 +201,16 @@ public:
|
||||||
{"build-timeout"}};
|
{"build-timeout"}};
|
||||||
|
|
||||||
PathSetting buildHook{this, true, "", "build-hook",
|
PathSetting buildHook{this, true, "", "build-hook",
|
||||||
"The path of the helper program that executes builds to remote machines."};
|
R"(
|
||||||
|
The path to the helper program that executes remote builds.
|
||||||
|
|
||||||
|
Nix communicates with the build hook over `stdio` using a custom protocol to request builds that cannot be performed directly by the Nix daemon.
|
||||||
|
The default value is the internal Nix binary that implements remote building.
|
||||||
|
|
||||||
|
> **Important**
|
||||||
|
>
|
||||||
|
> Change this setting only if you really know what you’re doing.
|
||||||
|
)"};
|
||||||
|
|
||||||
Setting<std::string> builders{
|
Setting<std::string> builders{
|
||||||
this, "@" + nixConfDir + "/machines", "builders",
|
this, "@" + nixConfDir + "/machines", "builders",
|
||||||
|
|
Loading…
Reference in a new issue