network/nix/nixos-module/container/mgmt-gw.nix

10 lines
124 B
Nix
Raw Normal View History

2021-04-04 22:55:40 +02:00
{ ... }:
{
# (IPv4-only) NAT the mgmt net
2021-04-04 22:55:40 +02:00
networking.nat = {
enable = true;
externalInterface = "core";
};
}