summaryrefslogtreecommitdiff
path: root/modules/services/privoxy/default.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/privoxy/default.nix
parent6bd39d420578aacf7c0bab7de3e7027b952115ae (diff)
parentbd921223ba7cdac346477d7ea5204d6f4736fcc6 (diff)
Merge branch 'LnL7:master' into masterHEADmaster
Diffstat (limited to 'modules/services/privoxy/default.nix')
-rw-r--r--modules/services/privoxy/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/services/privoxy/default.nix b/modules/services/privoxy/default.nix
index 5f7780c..b314723 100644
--- a/modules/services/privoxy/default.nix
+++ b/modules/services/privoxy/default.nix
@@ -10,40 +10,40 @@ in
services.privoxy.enable = mkOption {
type = types.bool;
default = false;
- description = lib.mdDoc "Whether to enable the privoxy proxy service.";
+ description = "Whether to enable the privoxy proxy service.";
};
services.privoxy.listenAddress = mkOption {
type = types.str;
default = "127.0.0.1:8118";
- description = lib.mdDoc "The address and TCP port on which privoxy will listen.";
+ description = "The address and TCP port on which privoxy will listen.";
};
services.privoxy.package = mkOption {
type = types.package;
default = pkgs.privoxy;
example = literalExpression "pkgs.privoxy";
- description = lib.mdDoc "This option specifies the privoxy package to use.";
+ description = "This option specifies the privoxy package to use.";
};
services.privoxy.config = mkOption {
type = types.lines;
default = "";
example = "forward / upstream.proxy:8080";
- description = lib.mdDoc "Config to use for privoxy";
+ description = "Config to use for privoxy";
};
services.privoxy.templdir = mkOption {
type = types.path;
default = "${pkgs.privoxy}/etc/templates";
defaultText = "\${pkgs.privoxy}/etc/templates";
- description = lib.mdDoc "Directory for privoxy template files.";
+ description = "Directory for privoxy template files.";
};
services.privoxy.confdir = mkOption {
type = types.nullOr types.path;
default = null;
- description = lib.mdDoc "Directory for privoxy files such as .action and .filter.";
+ description = "Directory for privoxy files such as .action and .filter.";
};
};