distibuted-build: change to ssh-ng

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-06-11 17:53:37 +03:00
parent e828500be7
commit 161a5917f6

View File

@ -15,7 +15,7 @@ in {
sshServe = { sshServe = {
enable = true; enable = true;
keys = map (f: readFile f) user.openssh.authorizedKeys.keyFiles; keys = map (f: readFile f) user.openssh.authorizedKeys.keyFiles;
# protocol = "ssh-ng"; protocol = "ssh-ng";
trusted = true; trusted = true;
write = true; write = true;
}; };
@ -34,11 +34,14 @@ in {
buildMachines = [ buildMachines = [
{ {
hostName = "dunamis"; hostName = "dunamis";
system = "x86_64-linux"; maxJobs = 3;
protocol = "ssh-ng";
publicHostKey = pubHost; publicHostKey = pubHost;
speedFactor = 2;
sshKey = secrets."ssh-${hostName}-user".path; sshKey = secrets."ssh-${hostName}-user".path;
sshUser = "nix-ssh"; sshUser = "nix-ssh";
supportedFeatures = ["benchmark" "big-parallel" "kvm" "nixos-test"]; supportedFeatures = ["benchmark" "big-parallel" "kvm" "nixos-test"];
system = "x86_64-linux";
} }
]; ];
}; };