From f6956682f5d83957ed76bd6a7340e18bc1b918ea Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Mon, 18 Oct 2021 09:04:18 -0400 Subject: [PATCH] new: add privoxy profile --- profiles/services/privoxy.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 profiles/services/privoxy.nix diff --git a/profiles/services/privoxy.nix b/profiles/services/privoxy.nix new file mode 100644 index 0000000..e701045 --- /dev/null +++ b/profiles/services/privoxy.nix @@ -0,0 +1,10 @@ +{ ... }: { + services.privoxy = { + enable = true; + + settings = { + enable-edit-actions = true; + forward-socks5 = "/ 127.0.0.1:1337 ."; + }; + }; +}