16 lines
300 B
Nix
16 lines
300 B
Nix
_: {
|
|
nix = {
|
|
distributedBuilds = true;
|
|
buildMachines = [
|
|
{
|
|
hostName = "plato";
|
|
systems = [ "x86_64-linux" "aarch64-linux" ];
|
|
maxJobs = 6;
|
|
supportedFeatures = [ "benchmark" "big-parallel" "kvm" ];
|
|
}
|
|
];
|
|
|
|
linux-builder.enable = true;
|
|
};
|
|
}
|