This commit is contained in:
Miguel Palhas
2026-03-21 16:01:20 +00:00
parent beb62ba7e0
commit 9af55f9e16
9 changed files with 224 additions and 147 deletions
+16
View File
@@ -0,0 +1,16 @@
{ ... }:
{
programs.ssh = {
enable = true;
matchBlocks = {
"yolo" = {
hostname = "10.7.10.2";
remoteForwards = [{
bind.port = 9222;
host.address = "localhost";
host.port = 9222;
}];
};
};
};
}