updated my ssh_config.nix
treefmt / nix fmt (pull_request) Successful in 7s
pytest / pytest (pull_request) Failing after 33s
build_systems / build-brain (pull_request) Failing after 1m3s
build_systems / build-bob (pull_request) Failing after 1m3s
build_systems / build-leviathan (pull_request) Failing after 1m13s
build_systems / build-rhapsody-in-green (pull_request) Failing after 1m14s
build_systems / build-jeeves (pull_request) Failing after 2m40s

This commit is contained in:
2026-06-02 12:21:28 -04:00
parent 398d72bf74
commit 2eebcb766c
+29 -29
View File
@@ -2,46 +2,46 @@
programs.ssh = { programs.ssh = {
enable = true; enable = true;
enableDefaultConfig = false; enableDefaultConfig = false;
matchBlocks = { settings = {
jeeves = { jeeves = {
hostname = "192.168.90.40"; HostName = "192.168.90.40";
user = "richie"; User = "richie";
identityFile = "~/.ssh/id_ed25519"; IdentityFile = "~/.ssh/id_ed25519";
port = 629; Port = 629;
dynamicForwards = [ { port = 9050; } ]; DynamicForward = [ { port = 9050; } ];
compression = true; Compression = true;
}; };
unlock-jeeves = { unlock-jeeves = {
hostname = "192.168.99.14"; HostName = "192.168.99.14";
user = "root"; User = "root";
identityFile = "~/.ssh/id_ed25519"; IdentityFile = "~/.ssh/id_ed25519";
port = 2222; Port = 2222;
}; };
brain = { brain = {
hostname = "192.168.90.35"; HostName = "192.168.90.35";
user = "richie"; User = "richie";
identityFile = "~/.ssh/id_ed25519"; IdentityFile = "~/.ssh/id_ed25519";
port = 129; Port = 129;
dynamicForwards = [ { port = 9050; } ]; DynamicForward = [ { port = 9050; } ];
}; };
unlock-brain = { unlock-brain = {
hostname = "192.168.95.35"; HostName = "192.168.95.35";
user = "root"; User = "root";
identityFile = "~/.ssh/id_ed25519"; IdentityFile = "~/.ssh/id_ed25519";
port = 2222; Port = 2222;
}; };
bob = { bob = {
hostname = "192.168.90.25"; HostName = "192.168.90.25";
user = "richie"; User = "richie";
identityFile = "~/.ssh/id_ed25519"; IdentityFile = "~/.ssh/id_ed25519";
port = 262; Port = 262;
dynamicForwards = [ { port = 9050; } ]; DynamicForward = [ { port = 9050; } ];
}; };
rhapsody-in-green = { rhapsody-in-green = {
hostname = "192.168.90.221"; HostName = "192.168.90.221";
user = "richie"; User = "richie";
identityFile = "~/.ssh/id_ed25519"; IdentityFile = "~/.ssh/id_ed25519";
port = 922; Port = 922;
}; };
}; };
}; };