diff options
author | Shea Levy <shea@shealevy.com> | 2016-07-18T22·50-0400 |
---|---|---|
committer | Shea Levy <shea@shealevy.com> | 2016-11-10T16·09-0500 |
commit | 167d12b02cc8cadfaf7c28959532030d65687a8f (patch) | |
tree | 37907cb4370b395da98c592ae1b73070acd8ed2b /tests | |
parent | 2af5d35fdc1171a9bdab7e2fc005673d76417c06 (diff) |
build-remote: Implement in C++
Diffstat (limited to 'tests')
-rw-r--r-- | tests/remote-builds.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/remote-builds.nix b/tests/remote-builds.nix index 34276e7d6981..d14d6ff7f056 100644 --- a/tests/remote-builds.nix +++ b/tests/remote-builds.nix @@ -43,6 +43,7 @@ in { config, pkgs, ... }: { nix.maxJobs = 0; # force remote building nix.distributedBuilds = true; + nix.envVars = pkgs.lib.mkAfter { NIX_BUILD_HOOK = "${nix}/libexec/nix/build-remote"; }; nix.buildMachines = [ { hostName = "slave1"; sshUser = "root"; |