mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
chore: update ssh config
This commit is contained in:
parent
ec9ad1e019
commit
fff1c89a00
5 changed files with 27 additions and 3 deletions
19
hosts/work/ssh.nix
Normal file
19
hosts/work/ssh.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue