depot/hosts/VEGAS/services/backbone-routing/port-forward.nix

12 lines
196 B
Nix
Raw Normal View History

2023-02-24 16:16:15 +02:00
{ depot, ... }:
{
networking.nat.forwardPorts = [
{
sourcePort = 52222;
2023-02-24 16:16:15 +02:00
destination = "${depot.config.hours.soda.interfaces.primary.addr}:22";
proto = "tcp";
}
];
}