···8686 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.";
8787 type = types.submodule hostPortSubmodule;
8888 default = {
8989- address = "0.0.0.0";
8989+ host = "0.0.0.0";
9090 port = if config.enableHTTPS then 443 else 80;
9191 };
9292 defaultText = literalExpression ''
9393 {
9494- address = "0.0.0.0";
9494+ host = "0.0.0.0";
9595 port = if enableHTTPS then 443 else 80;
9696 }
9797 '';