diff options
| author | Fuwn <[email protected]> | 2024-09-11 17:30:33 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-11 17:30:33 -0700 |
| commit | 0084122d039b69fd7bb4b9c6491f105347dede9f (patch) | |
| tree | 8335b0b7e895db37b0d7a930642ed76508b8502a /modules/networking/upnp.nix | |
| parent | Bump: flake systems input (diff) | |
| download | nixos-config-0084122d039b69fd7bb4b9c6491f105347dede9f.tar.xz nixos-config-0084122d039b69fd7bb4b9c6491f105347dede9f.zip | |
Bump: i2p and upnp
Diffstat (limited to 'modules/networking/upnp.nix')
| -rw-r--r-- | modules/networking/upnp.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/networking/upnp.nix b/modules/networking/upnp.nix new file mode 100644 index 0000000..998592a --- /dev/null +++ b/modules/networking/upnp.nix @@ -0,0 +1,12 @@ +{ + services.miniupnpd = { + enable = true; + natpmp = true; + externalInterface = "enp42s0"; + + internalIPs = [ + "enp42s0" + "wlan0" + ]; + }; +} |