Add hydra as a distributed build machine.

This commit is contained in:
Tom Alexander
2025-03-23 17:07:12 -04:00
parent e733dcdcbf
commit acfc9ac1a4
7 changed files with 74 additions and 1 deletions

View File

@@ -28,4 +28,12 @@
source = ./files/ssh_config;
};
};
home-manager.users.root =
{ pkgs, ... }:
{
home.file.".ssh/config" = {
source = ./files/ssh_config_root;
};
};
}

View File

@@ -0,0 +1,9 @@
Host hydra
HostName ns1.fizz.buzz
Port 65122
User talexander
IdentitiesOnly yes
IdentityFile /persist/manual/ssh/root/keys/id_ed25519
Host *
Compression yes