This commit is contained in:
Andrea Ciceri 2024-01-28 14:39:09 +01:00
parent 30ca703476
commit 4faa251a6e
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg
4 changed files with 9 additions and 9 deletions

View file

@ -66,8 +66,8 @@
};
distributedBuilds = true;
buildMachines = [
{
buildMachines =
(lib.lists.optional (config.networking.hostName == "picard") {
hostName = "sisko.fleet";
system = "aarch64-linux";
maxJobs = 4;
@ -75,8 +75,8 @@
protocol = "ssh-ng";
sshUser = "root";
sshKey = "/home/${config.ccr.username}/.ssh/id_rsa";
}
{
})
++ (lib.lists.optional (config.networking.hostName == "picard") {
hostName = "mac.staging.mlabs.city";
system = "x86_64-darwin";
maxJobs = 4;
@ -84,7 +84,6 @@
protocol = "ssh-ng";
sshUser = "root";
sshKey = "/home/${config.ccr.username}/.ssh/id_rsa";
}
];
});
};
}