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

12 lines
196 B
Nix

{ depot, ... }:
{
networking.nat.forwardPorts = [
{
sourcePort = 52222;
destination = "${depot.config.hours.soda.interfaces.primary.addr}:22";
proto = "tcp";
}
];
}