blob: 5526a83d31931a623b46bcc60fb6503e83756d6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ config, buildbot-nix, ... }:
{
imports = [
buildbot-nix.nixosModules.buildbot-worker
];
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";
};
}
|