Add reusable remote-builder NixOS module and builder system user. Server (lazyworkhorse): dispatches aarch64-linux builds to uConsole uConsole: dispatches x86_64-linux builds to server The builder user uses the same SSH keypair on both hosts for symmetric remote building. Generate the key with: ssh-keygen -t ed25519 -f /etc/ssh/builder_key -N "" Add the public key to lib/keys.nix (replace PLACEHOLDER).
30 lines
944 B
Nix
30 lines
944 B
Nix
{
|
|
users = {
|
|
gortium = {
|
|
main = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILYwvoGdSGbGDVU/Fi7re9NmPJuA29GNH82vT0LqMEKo";
|
|
github = "";
|
|
gitea = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN9tKezYidZglWBRI9/2I/cBGUUHj2dHY8rHXppYmf7F";
|
|
};
|
|
|
|
ai-worker = {
|
|
main = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAXeGtPPcsP2IYRQNvII41NVWhJsarEk8c4qxs/a5sXf";
|
|
};
|
|
|
|
builder = {
|
|
# Same key on both hosts for bidirectional remote building.
|
|
# Generate with: ssh-keygen -t ed25519 -f /etc/ssh/builder_key -N ""
|
|
# Replace the placeholder below with the public key (builder_key.pub).
|
|
main = "PLACEHOLDER_ADD_BUILDER_PUBKEY_HERE";
|
|
};
|
|
};
|
|
|
|
hosts = {
|
|
lazyworkhorse = {
|
|
main = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBmPv4JssvhHGIx85UwFxDSrL5anR4eXB/cd9V2i9wdW";
|
|
github = "";
|
|
gitea = "";
|
|
bootstrap = "age1r796v2uldtspawyh863pks74sd2pwcan8j4e4pjzsvkmr3vjja9qpz5ste";
|
|
};
|
|
};
|
|
}
|