Files
nixos-config/home/common/programs/ssh.nix
T
Miguel Palhas 0f1c9235e9 wip
2026-05-28 15:24:48 +01:00

19 lines
303 B
Nix

{ ... }:
{
programs.ssh = {
enable = true;
matchBlocks = {
"yolo" = {
hostname = "10.7.10.2";
remoteForwards = [
{
bind.port = 9222;
host.address = "localhost";
host.port = 9222;
}
];
};
};
};
}