From 2eebcb766c98a4d419d0ee81007bd4748358fc38 Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Tue, 2 Jun 2026 12:21:28 -0400 Subject: [PATCH] updated my ssh_config.nix --- users/richie/home/ssh_config.nix | 58 ++++++++++++++++---------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/users/richie/home/ssh_config.nix b/users/richie/home/ssh_config.nix index effdb78..e56ed33 100644 --- a/users/richie/home/ssh_config.nix +++ b/users/richie/home/ssh_config.nix @@ -2,46 +2,46 @@ programs.ssh = { enable = true; enableDefaultConfig = false; - matchBlocks = { + settings = { jeeves = { - hostname = "192.168.90.40"; - user = "richie"; - identityFile = "~/.ssh/id_ed25519"; - port = 629; - dynamicForwards = [ { port = 9050; } ]; - compression = true; + HostName = "192.168.90.40"; + User = "richie"; + IdentityFile = "~/.ssh/id_ed25519"; + Port = 629; + DynamicForward = [ { port = 9050; } ]; + Compression = true; }; unlock-jeeves = { - hostname = "192.168.99.14"; - user = "root"; - identityFile = "~/.ssh/id_ed25519"; - port = 2222; + HostName = "192.168.99.14"; + User = "root"; + IdentityFile = "~/.ssh/id_ed25519"; + Port = 2222; }; brain = { - hostname = "192.168.90.35"; - user = "richie"; - identityFile = "~/.ssh/id_ed25519"; - port = 129; - dynamicForwards = [ { port = 9050; } ]; + HostName = "192.168.90.35"; + User = "richie"; + IdentityFile = "~/.ssh/id_ed25519"; + Port = 129; + DynamicForward = [ { port = 9050; } ]; }; unlock-brain = { - hostname = "192.168.95.35"; - user = "root"; - identityFile = "~/.ssh/id_ed25519"; - port = 2222; + HostName = "192.168.95.35"; + User = "root"; + IdentityFile = "~/.ssh/id_ed25519"; + Port = 2222; }; bob = { - hostname = "192.168.90.25"; - user = "richie"; - identityFile = "~/.ssh/id_ed25519"; - port = 262; - dynamicForwards = [ { port = 9050; } ]; + HostName = "192.168.90.25"; + User = "richie"; + IdentityFile = "~/.ssh/id_ed25519"; + Port = 262; + DynamicForward = [ { port = 9050; } ]; }; rhapsody-in-green = { - hostname = "192.168.90.221"; - user = "richie"; - identityFile = "~/.ssh/id_ed25519"; - port = 922; + HostName = "192.168.90.221"; + User = "richie"; + IdentityFile = "~/.ssh/id_ed25519"; + Port = 922; }; }; };