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

17 lines
349 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"];
}
];
};
}