From 8e21a1c51bbcdddd001c60cf9ea3975b2e317bbe Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Fri, 5 Mar 2021 16:16:55 +0100 Subject: [PATCH] nixos/privoxy: set temporary directory This is needed for working external filters, otherwise privoxy will fail without a clear error message. --- nixos/modules/services/networking/privoxy.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/networking/privoxy.nix b/nixos/modules/services/networking/privoxy.nix index 8ab9a6171fc..b8d33916342 100644 --- a/nixos/modules/services/networking/privoxy.nix +++ b/nixos/modules/services/networking/privoxy.nix @@ -221,6 +221,8 @@ in services.privoxy.settings = { user-manual = "${pkgs.privoxy}/share/doc/privoxy/user-manual"; + # This is needed for external filters + temporary-directory = "/tmp"; filterfile = [ "default.filter" ]; actionsfile = [ "match-all.action"