nix/nixos/common/modules/remote-builders.nix
iFargle 3a8f273036
Some checks failed
ssh-test / ssh-test (push) Failing after 16s
Add distributedBuilds = true
2023-12-10 12:39:03 +09:00

17 lines
No EOL
580 B
Nix

{
nix.settings.trusted-users = [ "albert" ];
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'';
nix.distributedBuilds = true;
}