athens/modules/builder/default.nix

14 lines
277 B
Nix
Raw Normal View History

2023-07-14 18:53:25 -04:00
_: {
nix.distributedBuilds = true;
2023-06-07 15:17:07 -04:00
nix.buildMachines = [
{
2023-06-27 11:04:56 -04:00
hostName = "plato";
2023-07-17 14:41:12 -04:00
systems = [ "x86_64-linux" "aarch64-linux" ];
2023-06-07 15:17:07 -04:00
maxJobs = 6;
2023-06-27 11:04:56 -04:00
supportedFeatures = [ "benchmark" "big-parallel" "kvm" ];
2023-06-07 15:17:07 -04:00
}
];
2023-07-17 14:41:12 -04:00
2023-07-25 12:24:03 -04:00
nix.linux-builder.enable = true;
}