mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
feat: add ssh config for wsl
This commit is contained in:
parent
4fd2361813
commit
50289dcc0d
2 changed files with 11 additions and 1 deletions
|
|
@ -19,5 +19,7 @@
|
||||||
boot.loader.efi.canTouchEfiVariables = false;
|
boot.loader.efi.canTouchEfiVariables = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
imports = [];
|
imports = [
|
||||||
|
./ssh.nix
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
8
hosts/desktop-wsl/ssh.nix
Normal file
8
hosts/desktop-wsl/ssh.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
{lib, ...}: {
|
||||||
|
fireproof.home-manager.programs.ssh.matchBlocks = {
|
||||||
|
"bastion.ao" = {
|
||||||
|
hostname = "62.199.221.53";
|
||||||
|
proxyJump = lib.mkForce null;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue