···
+
cfg = config.services.privoxy;
+
confFile = pkgs.writeText "privoxy.conf" ''
+
user-manual ${privoxy}/share/doc/privoxy/user-manual
+
confdir ${privoxy}/etc/
+
listen-address ${cfg.listenAddress}
+
enable-edit-actions ${if (cfg.enableEditActions == true) then "1" else "0"}
+
${concatMapStrings (f: "actionsfile ${f}\n") cfg.actionsFiles}
+
${concatMapStrings (f: "filterfile ${f}\n") cfg.filterFiles}
···
+
Whether to enable the Privoxy non-caching filtering proxy.
listenAddress = mkOption {
default = "127.0.0.1:8118";
Address the proxy server is listening to.
+
actionsFiles = mkOption {
+
type = types.listOf types.str;
+
example = [ "match-all.action" "default.action" "/etc/privoxy/user.action" ];
+
default = [ "match-all.action" "default.action" ];
+
List of paths to Privoxy action files.
+
These paths may either be absolute or relative to the privoxy configuration directory.
+
filterFiles = mkOption {
+
type = types.listOf types.str;
+
example = [ "default.filter" "/etc/privoxy/user.filter" ];
+
default = [ "default.filter" ];
+
List of paths to Privoxy filter files.
+
These paths may either be absolute or relative to the privoxy configuration directory.
+
enableEditActions = mkOption {
+
Whether or not the web-based actions file editor may be used.
Extra configuration. Contents will be added verbatim to the configuration file.
···
+
config = mkIf cfg.enable {
users.extraUsers = singleton
uid = config.ids.uids.privoxy;
description = "Privoxy daemon user";
+
systemd.services.privoxy = {
+
description = "Filtering web proxy";
+
after = [ "network.target" "nss-lookup.target" ];
+
wantedBy = [ "multi-user.target" ];
+
serviceConfig.ExecStart = "${privoxy}/sbin/privoxy --no-daemon --user ${privoxyUser} ${confFile}";