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

17 lines
349 B
Nix
Raw Permalink Normal View History

2020-04-21 01:18:51 +00:00
# Use the mio-ops build servers
{
nix = {
distributedBuilds = true;
2022-03-07 14:26:15 +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
};
}