From 40a7511116de7ddc408c580f80b5103669b84d34 Mon Sep 17 00:00:00 2001 From: Nickolaj Jepsen Date: Tue, 19 Aug 2025 11:25:41 +0200 Subject: [PATCH] chore(ssh): add staging.ao host --- modules/base/ssh.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/base/ssh.nix b/modules/base/ssh.nix index 41eed3f..86dfece 100644 --- a/modules/base/ssh.nix +++ b/modules/base/ssh.nix @@ -62,6 +62,12 @@ in { proxyJump = lib.mkDefault "bastion.ao"; identityFile = "${config.age.secrets.ssh-key-ao.path}"; }; + "staging.ao" = { + user = "staging"; + hostname = "172.16.2.102"; + proxyJump = lib.mkDefault "bastion.ao"; + identityFile = "${config.age.secrets.ssh-key-ao.path}"; + }; }; }; };