mio-ops/roles/nix-mio-ops.nix

18 lines
352 B
Nix
Raw Normal View History

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