16 lines
325 B
Nix
16 lines
325 B
Nix
|
{
|
||
|
nix = {
|
||
|
distributedBuilds = true;
|
||
|
buildMachines = [
|
||
|
{
|
||
|
hostName = "aarch64.nixos.community";
|
||
|
maxJobs = 64;
|
||
|
sshKey = toString <secrets/nixos-community>;
|
||
|
sshUser = "makefu";
|
||
|
system = "aarch64-linux";
|
||
|
supportedFeatures = [ "big-parallel" ];
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
}
|