From b37ee5777d897a8f5887a92ab12033db62b29125 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sun, 5 Jul 2026 19:11:53 -0500 Subject: [PATCH] some ssh match blocks --- modules/features/ssh.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/modules/features/ssh.nix b/modules/features/ssh.nix index dacc5c3..80bdc82 100644 --- a/modules/features/ssh.nix +++ b/modules/features/ssh.nix @@ -231,6 +231,7 @@ in ServerAliveInterval = 60; ServerAliveCountMax = 3; TCPKeepAlive = "yes"; + ConnectTimeout = 3; PubkeyAuthentication = "yes"; PasswordAuthentication = "no"; @@ -256,6 +257,23 @@ in } ] ); + + "gitea" = { + HostName = "192.168.1.104"; + User = "john"; + }; + "janus" = { + HostName = "fded:fb16:653e:25da:be24:11ff:fe6b:4d57"; + User = "root"; + }; + "hermes" = { + HostName = "192.168.1.150"; + User = "root"; + }; + "jdl-docker" = { + HostName = "jdl-docker.tailcf205.ts.net"; + User = "john"; + }; }; }; };