Switch to quark's buildMachine config being entirely in nix rather than in root's ssh config.

This commit is contained in:
Tom Alexander 2025-05-04 16:26:41 -04:00
parent 98f98a8895
commit 902c6e1127
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
2 changed files with 3 additions and 9 deletions

View File

@ -77,8 +77,9 @@ in
{ {
hostName = "quark"; hostName = "quark";
sshUser = "nixworker"; sshUser = "nixworker";
# sshKey = ""; sshKey = "/persist/manual/ssh/root/keys/id_ed25519";
# publicHostKey = ""; # From: base64 -w0 /persist/ssh/ssh_host_ed25519_key.pub
publicHostKey = "c3NoLWVkMjU1MTkgQUFBQUMzTnphQzFsWkRJMU5URTVBQUFBSUx0alplYlVYTkRkU3Y1enVGbjM3eFNMZUN3S2hPKzFMdWovM2FYNFJRTEEgcm9vdEBxdWFyawo=";
systems = [ systems = [
"x86_64-linux" "x86_64-linux"
# "aarch64-linux" # "aarch64-linux"

View File

@ -5,12 +5,5 @@ Host hydra
IdentitiesOnly yes IdentitiesOnly yes
IdentityFile /persist/manual/ssh/root/keys/id_ed25519 IdentityFile /persist/manual/ssh/root/keys/id_ed25519
Host quark
HostName quark
Port 22
User nixworker
IdentitiesOnly yes
IdentityFile /persist/manual/ssh/root/keys/id_ed25519
Host * Host *
Compression yes Compression yes