nix/nixos/common/modules/remote-builders.nix
2023-12-13 08:44:16 +09:00

15 lines
No EOL
499 B
Nix

{
nix.buildMachines = [
{
hostName = "framework-server"; # Only availalbe on the Headscale network
sshUser = "albert";
protocol = "ssh-ng";
maxJobs = 32;
speedFactor = 5;
systems = [ "x86_64-linux" "aarch64-linux" ];
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
mandatoryFeatures = [ ];
}
];
nix.extraOptions = ''builders-use-substitutes = true'';
}