chore: update ssh config

This commit is contained in:
Nickolaj Jepsen 2025-02-26 15:26:31 +01:00
parent ec9ad1e019
commit fff1c89a00
5 changed files with 27 additions and 3 deletions

19
hosts/work/ssh.nix Normal file
View file

@ -0,0 +1,19 @@
{lib, ...}: {
fireproof.home-manager.programs.ssh.matchBlocks = {
"dev.ao" = {
hostname = "192.168.2.28";
proxyJump = lib.mkForce null;
};
"flex.ao" = {
hostname = "192.168.2.5";
proxyJump = lib.mkForce null;
};
"bastion.ao" = {
hostname = "192.168.2.6";
proxyJump = lib.mkForce null;
};
"server" = {
proxyJump = "bastion.ao";
};
};
}