summaryrefslogtreecommitdiff
path: root/modules/services/dnsmasq.nix
diff options
context:
space:
mode:
authorMike Vink <59492084+ivi-vink@users.noreply.github.com>2025-01-16 22:22:34 +0100
committerGitHub <noreply@github.com>2025-01-16 22:22:34 +0100
commit8e7bd91f353caacc0bc4105f573eb3e17f09e03a (patch)
treec5059edcbebd9644290cad7c653c49a36d593021 /modules/services/dnsmasq.nix
parent6bd39d420578aacf7c0bab7de3e7027b952115ae (diff)
parentbd921223ba7cdac346477d7ea5204d6f4736fcc6 (diff)
Merge branch 'LnL7:master' into masterHEADmaster
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"; }
'';