summaryrefslogtreecommitdiff
path: root/modules/services/nextdns/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/services/nextdns/default.nix')
-rw-r--r--modules/services/nextdns/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/services/nextdns/default.nix b/modules/services/nextdns/default.nix
index 5ea5e75..adc9823 100644
--- a/modules/services/nextdns/default.nix
+++ b/modules/services/nextdns/default.nix
@@ -13,13 +13,13 @@ in {
type = types.bool;
default = false;
description =
- lib.mdDoc "Whether to enable the NextDNS DNS/53 to DoH Proxy service.";
+ "Whether to enable the NextDNS DNS/53 to DoH Proxy service.";
};
arguments = mkOption {
type = types.listOf types.str;
default = [ ];
example = [ "-config" "10.0.3.0/24=abcdef" ];
- description = lib.mdDoc "Additional arguments to be passed to nextdns run.";
+ description = "Additional arguments to be passed to nextdns run.";
};
};
};
@@ -31,7 +31,7 @@ in {
launchd.daemons.nextdns = {
path = [ nextdns ];
serviceConfig.ProgramArguments =
- [ "${pkgs.nextdns}/bin/nextdns" "run" (escapeShellArgs cfg.arguments) ];
+ [ "${pkgs.nextdns}/bin/nextdns" "run" ] ++ cfg.arguments;
serviceConfig.KeepAlive = true;
serviceConfig.RunAtLoad = true;
};