summaryrefslogtreecommitdiffstats
path: root/krebs/2configs/buildbot
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2024-09-06 22:44:11 +0200
committermakefu <github@syntax-fehler.de>2024-09-06 22:44:11 +0200
commit17c0846711a8d4eac17f2483eeffa7ffc2785ce6 (patch)
treee70172e72e925b9627ecabd22e56dd3ee9df681d /krebs/2configs/buildbot
parent8fa5751b082b63e1d4010fa599fa245920f41750 (diff)
puyak.r: use relative import
Diffstat (limited to 'krebs/2configs/buildbot')
-rw-r--r--krebs/2configs/buildbot/worker.nix4
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";
};
}