mio-ops/roles/nix-mio-ops.nix
2020-10-22 09:42:54 +10:00

18 lines
352 B
Nix

# Use the mio-ops build servers
{
nix = {
distributedBuilds = true;
buildMachines = [
{
hostName = "cuallaidh.mcwhirter.io";
maxJobs = 64;
sshKey = "/root/.ssh/id_nixops_ed25519";
sshUser = "craige";
system = "x86_64-linux";
supportedFeatures = [ "big-parallel" ];
}
];
};
}