10 lines
140 B
Nix
10 lines
140 B
Nix
|
{
|
||
|
networking.nat.forwardPorts = [
|
||
|
{
|
||
|
sourcePort = 52222;
|
||
|
destination = "10.10.2.205:22";
|
||
|
proto = "tcp";
|
||
|
}
|
||
|
];
|
||
|
}
|