Files
nixos-config/home/common/programs/ssh.nix
T
Miguel Palhas 9af55f9e16 wip
2026-03-21 16:01:20 +00:00

17 lines
275 B
Nix

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