athens/modules/builder/default.nix
2023-09-10 14:27:05 -04:00

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;
};
}