From bcc43cd54c9e9d37de92aee9fa60a144f5e6ee9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tristan=20Dani=C3=ABl=20Maat?= Date: Sun, 3 Mar 2024 03:45:40 +0100 Subject: [PATCH] ssh: Add new hetzner server --- home-config/config/tty-applications/ssh.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/home-config/config/tty-applications/ssh.nix b/home-config/config/tty-applications/ssh.nix index e46a955b..10878afc 100644 --- a/home-config/config/tty-applications/ssh.nix +++ b/home-config/config/tty-applications/ssh.nix @@ -30,6 +30,13 @@ HostkeyAlgorithms = "+ssh-rsa"; }; }; + + "hetzner-1" = lib.hm.dag.entryAfter ["*"] { + hostname = "116.202.158.55"; + user = "tlater"; + port = 2222; + forwardAgent = true; + }; }; };