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