From 12a44209b6e75a2ea39ff3efdd03ca5a047e4781 Mon Sep 17 00:00:00 2001 From: Poby <87608318+smg1024@users.noreply.github.com> Date: Thu, 21 May 2026 00:28:46 +0900 Subject: [PATCH] feat(ssh): add tailscale ssh config --- modules/aspects/_ssh/ssh.nix | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/modules/aspects/_ssh/ssh.nix b/modules/aspects/_ssh/ssh.nix index 24d350d..1d68b72 100644 --- a/modules/aspects/_ssh/ssh.nix +++ b/modules/aspects/_ssh/ssh.nix @@ -24,20 +24,34 @@ identitiesOnly = true; identityFile = [config.sops.secrets."kmeat_mac_mini_ssh_key".path]; }; - "yggdrasil" = { + "yggdrasil.local" = { hostname = "222.109.216.197"; user = "poby"; port = 22; identitiesOnly = true; identityFile = [config.sops.secrets."github_ssh_key".path]; }; - "midgard" = { + "midgard.local" = { hostname = "222.109.239.172"; user = "poby"; port = 22; identitiesOnly = true; identityFile = [config.sops.secrets."github_ssh_key".path]; }; + "yggdrasil" = { + hostname = "yggdrasil.tail6fc192.ts.net"; + user = "poby"; + port = 22; + identitiesOnly = true; + identityFile = [config.sops.secrets."github_ssh_key".path]; + }; + "midgard" = { + hostname = "midgard.tail6fc192.ts.net"; + user = "poby"; + port = 22; + identitiesOnly = true; + identityFile = [config.sops.secrets."github_ssh_key".path]; + }; }; }; }