Compare commits

...

1 commit

4 changed files with 11 additions and 3 deletions

View file

@ -17,7 +17,7 @@
qenya.services.distributed-builds = {
enable = true;
keyFile = "/etc/ssh/ssh_host_ed25519_key";
builders = [ "kalessin" ];
builders = [ "kilgharrah" ];
};
randomcat.services.zfs.datasets = {

View file

@ -49,7 +49,7 @@
qenya.services.distributed-builds = {
enable = true;
keyFile = "/etc/ssh/ssh_host_ed25519_key";
builders = [ "kalessin" ];
builders = [ "kilgharrah" ];
};
programs.evolution.enable = true; # not in home-manager yet; not declaratively configurable yet

View file

@ -17,7 +17,7 @@
qenya.services.distributed-builds = {
enable = true;
keyFile = "/etc/ssh/ssh_host_ed25519_key";
builders = [ "kalessin" ];
builders = [ "kilgharrah" ];
};
services.bind = {

View file

@ -40,6 +40,14 @@ in
sshKey = cfg.keyFile;
systems = [ "aarch64-linux" "x86_64-linux" ];
supportedFeatures = [ ];
})
++ (optional (elem "kilgharrah" cfg.builders) {
hostName = config.birdsong.hosts."kilgharrah".ipv4;
sshUser = "remotebuild";
sshKey = cfg.keyFile;
systems = [ "x86_64-linux" ];
maxJobs = 12;
supportedFeatures = [ "big-parallel" ];
});
};
}