athens/modules/builder/default.nix
2023-07-14 18:53:25 -04:00

13 lines
260 B
Nix

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