summaryrefslogtreecommitdiff
path: root/modules/services/dnsmasq.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/services/dnsmasq.nix')
-rw-r--r--modules/services/dnsmasq.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/services/dnsmasq.nix b/modules/services/dnsmasq.nix
index 03071db..7ea674f 100644
--- a/modules/services/dnsmasq.nix
+++ b/modules/services/dnsmasq.nix
@@ -12,32 +12,32 @@ in
services.dnsmasq.enable = mkOption {
type = types.bool;
default = false;
- description = lib.mdDoc "Whether to enable DNSmasq.";
+ description = "Whether to enable DNSmasq.";
};
services.dnsmasq.package = mkOption {
type = types.path;
default = pkgs.dnsmasq;
defaultText = "pkgs.dnsmasq";
- description = lib.mdDoc "This option specifies the dnsmasq package to use.";
+ description = "This option specifies the dnsmasq package to use.";
};
services.dnsmasq.bind = mkOption {
type = types.str;
default = "127.0.0.1";
- description = lib.mdDoc "This option specifies the interface on which DNSmasq will listen.";
+ description = "This option specifies the interface on which DNSmasq will listen.";
};
services.dnsmasq.port = mkOption {
type = types.int;
default = 53;
- description = lib.mdDoc "This option specifies port on which DNSmasq will listen.";
+ description = "This option specifies port on which DNSmasq will listen.";
};
services.dnsmasq.addresses = mkOption {
type = types.attrs;
default = {};
- description = lib.mdDoc "List of domains that will be redirected by the DNSmasq.";
+ description = "List of domains that will be redirected by the DNSmasq.";
example = literalExpression ''
{ localhost = "127.0.0.1"; }
'';