18 lines
346 B
Nix
18 lines
346 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";
|
||
|
supportedFeatures = [ "big-parallel" ];
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
}
|