summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/networking/mosquitto.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/networking/mosquitto.nix')
-rw-r--r--nixos/modules/services/networking/mosquitto.nix40
1 files changed, 20 insertions, 20 deletions
diff --git a/nixos/modules/services/networking/mosquitto.nix b/nixos/modules/services/networking/mosquitto.nix
index 256d9457d396..70c6725d1035 100644
--- a/nixos/modules/services/networking/mosquitto.nix
+++ b/nixos/modules/services/networking/mosquitto.nix
@@ -54,10 +54,10 @@ let
hashedPassword = mkOption {
type = uniq (nullOr str);
default = null;
- description = ''
+ description = mdDoc ''
Specifies the hashed password for the MQTT User.
- To generate hashed password install <literal>mosquitto</literal>
- package and use <literal>mosquitto_passwd</literal>.
+ To generate hashed password install `mosquitto`
+ package and use `mosquitto_passwd`.
'';
};
@@ -65,11 +65,11 @@ let
type = uniq (nullOr types.path);
example = "/path/to/file";
default = null;
- description = ''
+ description = mdDoc ''
Specifies the path to a file containing the
hashed password for the MQTT user.
- To generate hashed password install <literal>mosquitto</literal>
- package and use <literal>mosquitto_passwd</literal>.
+ To generate hashed password install `mosquitto`
+ package and use `mosquitto_passwd`.
'';
};
@@ -155,24 +155,24 @@ let
options = {
plugin = mkOption {
type = path;
- description = ''
- Plugin path to load, should be a <literal>.so</literal> file.
+ description = mdDoc ''
+ Plugin path to load, should be a `.so` file.
'';
};
denySpecialChars = mkOption {
type = bool;
- description = ''
- Automatically disallow all clients using <literal>#</literal>
- or <literal>+</literal> in their name/id.
+ description = mdDoc ''
+ Automatically disallow all clients using `#`
+ or `+` in their name/id.
'';
default = true;
};
options = mkOption {
type = attrsOf optionType;
- description = ''
- Options for the auth plugin. Each key turns into a <literal>auth_opt_*</literal>
+ description = mdDoc ''
+ Options for the auth plugin. Each key turns into a `auth_opt_*`
line in the config.
'';
default = {};
@@ -239,8 +239,8 @@ let
address = mkOption {
type = nullOr str;
- description = ''
- Address to listen on. Listen on <literal>0.0.0.0</literal>/<literal>::</literal>
+ description = mdDoc ''
+ Address to listen on. Listen on `0.0.0.0`/`::`
when unset.
'';
default = null;
@@ -248,10 +248,10 @@ let
authPlugins = mkOption {
type = listOf authPluginOptions;
- description = ''
+ description = mdDoc ''
Authentication plugin to attach to this listener.
- Refer to the <link xlink:href="https://mosquitto.org/man/mosquitto-conf-5.html">
- mosquitto.conf documentation</link> for details on authentication plugins.
+ Refer to the [mosquitto.conf documentation](https://mosquitto.org/man/mosquitto-conf-5.html)
+ for details on authentication plugins.
'';
default = [];
};
@@ -472,10 +472,10 @@ let
includeDirs = mkOption {
type = listOf path;
- description = ''
+ description = mdDoc ''
Directories to be scanned for further config files to include.
Directories will processed in the order given,
- <literal>*.conf</literal> files in the directory will be
+ `*.conf` files in the directory will be
read in case-sensistive alphabetical order.
'';
default = [];