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

12 lines
189 B
Nix
Raw Normal View History

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