Fix remote builder config.

This commit is contained in:
Tom Alexander 2025-03-26 19:53:32 -04:00
parent 3ecb2fc790
commit 2b20ab5123
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
2 changed files with 10 additions and 0 deletions

View File

@ -13,6 +13,7 @@
nix.buildMachines = [ nix.buildMachines = [
{ {
hostName = "hydra"; hostName = "hydra";
sshUser = "talexander";
systems = [ systems = [
"x86_64-linux" "x86_64-linux"
# "aarch64-linux" # "aarch64-linux"
@ -24,6 +25,9 @@
"benchmark" "benchmark"
"big-parallel" "big-parallel"
# "kvm" # "kvm"
"gccarch-znver4"
"gccarch-x86-64-v3"
"gccarch-x86-64-v4"
]; ];
} }
]; ];

View File

@ -19,6 +19,12 @@
".ssh/known_hosts" ".ssh/known_hosts"
]; ];
}; };
users.root = {
home = "/root";
files = [
".ssh/known_hosts"
];
};
}; };
home-manager.users.talexander = home-manager.users.talexander =