athens/modules/builder/default.nix

13 lines
289 B
Nix
Raw Normal View History

{ config, nixpkgs, pkgs, ... }: {
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-01 16:27:52 -04:00
systems = [ "x86_64-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
}
];
nix.linux-builder.enable = true;
}