feat: add ssh config for wsl

This commit is contained in:
Nickolaj Jepsen 2025-12-14 02:57:03 +01:00
parent 4fd2361813
commit 50289dcc0d
2 changed files with 11 additions and 1 deletions

View file

@ -19,5 +19,7 @@
boot.loader.efi.canTouchEfiVariables = false; boot.loader.efi.canTouchEfiVariables = false;
}; };
imports = []; imports = [
./ssh.nix
];
} }

View file

@ -0,0 +1,8 @@
{lib, ...}: {
fireproof.home-manager.programs.ssh.matchBlocks = {
"bastion.ao" = {
hostname = "62.199.221.53";
proxyJump = lib.mkForce null;
};
};
}