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"; + }; }; }; };