diff options
author | lassulus <git@lassul.us> | 2024-09-08 01:01:50 +0200 |
---|---|---|
committer | lassulus <git@lassul.us> | 2024-09-08 01:01:50 +0200 |
commit | 7061e9c14dc44d028c36456535245889488ef95a (patch) | |
tree | 4f8679319b85ecfee94870de5de8d05bea71ecfb /krebs/2configs/buildbot | |
parent | d559b4a8edf7a2c110279c5b65504477804db053 (diff) | |
parent | 3465ed4908bee221a38b4a2520ebb5d931cd119e (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'krebs/2configs/buildbot')
-rw-r--r-- | krebs/2configs/buildbot/worker.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/krebs/2configs/buildbot/worker.nix b/krebs/2configs/buildbot/worker.nix index e96c6df14..5526a83d3 100644 --- a/krebs/2configs/buildbot/worker.nix +++ b/krebs/2configs/buildbot/worker.nix @@ -1,4 +1,4 @@ -{ buildbot-nix, ... }: +{ config, buildbot-nix, ... }: { imports = [ buildbot-nix.nixosModules.buildbot-worker @@ -6,6 +6,8 @@ services.buildbot-nix.worker = { enable = true; + name = config.krebs.build.host.name; workerPasswordFile = "/var/src/secrets/nix-worker-file"; + masterUrl = "tcp:host=gum:port=9989"; }; } |