Personal Nix setup
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Disable UPnP

+2 -1
+1
machines/ramune/configuration.nix
··· 15 15 router = { 16 16 enable = true; 17 17 ipv6 = true; 18 + upnp.enable = false; 18 19 interfaces = { 19 20 external = { 20 21 name = "extern0";
+1 -1
modules/router/upnp.nix
··· 9 9 options.modules.router = { 10 10 upnp = { 11 11 enable = mkOption { 12 - default = cfg.enable; 12 + default = false; 13 13 description = "Whether to enable UPNP"; 14 14 type = types.bool; 15 15 };