lol

wstunnel: correct listen option

+2 -2
+2 -2
nixos/modules/services/networking/wstunnel.nix
··· 86 86 description = mdDoc "Address and port to listen on. Setting the port to a value below 1024 will also give the process the required `CAP_NET_BIND_SERVICE` capability."; 87 87 type = types.submodule hostPortSubmodule; 88 88 default = { 89 - address = "0.0.0.0"; 89 + host = "0.0.0.0"; 90 90 port = if config.enableHTTPS then 443 else 80; 91 91 }; 92 92 defaultText = literalExpression '' 93 93 { 94 - address = "0.0.0.0"; 94 + host = "0.0.0.0"; 95 95 port = if enableHTTPS then 443 else 80; 96 96 } 97 97 '';