tohru, yevaud, orm: build remotely on kilgharrah instead of kalessin

This commit is contained in:
Katherina Walshe-Grey 2024-11-16 01:42:26 +00:00
parent b25aa75d37
commit e3d5e11288
4 changed files with 11 additions and 3 deletions

View file

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

View file

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

View file

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

View file

@ -40,6 +40,14 @@ in
sshKey = cfg.keyFile; sshKey = cfg.keyFile;
systems = [ "aarch64-linux" "x86_64-linux" ]; systems = [ "aarch64-linux" "x86_64-linux" ];
supportedFeatures = [ ]; 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" ];
}); });
}; };
} }