summaryrefslogtreecommitdiff
path: root/modules/pc/networking/upnp.nix
blob: 998592a08dc639a570e4e7493f8931e5c8c67177 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{
  services.miniupnpd = {
    enable = true;
    natpmp = true;
    externalInterface = "enp42s0";

    internalIPs = [
      "enp42s0"
      "wlan0"
    ];
  };
}