upnp.nix 175 B

123456789
  1. { config, pkgs, ... }:
  2. {
  3. services.miniupnpd = {
  4. enable = true;
  5. natpmp = true;
  6. externalInterface = "ppp0";
  7. internalIPs = [ "lan" ];
  8. };
  9. }