13 lines
236 B
Nix
13 lines
236 B
Nix
|
{ pkgs, inputs, ... }: {
|
||
|
|
||
|
imports = [
|
||
|
inputs.buildbot-nix.nixosModules.buildbot-worker
|
||
|
];
|
||
|
|
||
|
services.buildbot-nix.worker = {
|
||
|
enable = true;
|
||
|
workerPasswordFile = pkgs.writeText "worker-password-file" "password";
|
||
|
};
|
||
|
|
||
|
}
|