mio-ops/profiles/nix-mio-ops.nix
2021-11-16 17:53:38 +10:00

16 lines
326 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" ];
}];
};
}