mio-ops/profiles/nix-mio-ops.nix

16 lines
326 B
Nix
Raw Normal View History

2020-04-21 01:18:51 +00:00
# Use the mio-ops build servers
{
nix = {
distributedBuilds = true;
2021-11-16 04:57:23 +00:00
buildMachines = [{
hostName = "cuallaidh.mcwhirter.io";
maxJobs = 64;
sshKey = "/root/.ssh/id_nixops_ed25519";
sshUser = "craige";
system = "x86_64-linux";
supportedFeatures = [ "big-parallel" ];
}];
2020-04-21 01:18:51 +00:00
};
}