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 ."; + }; + }; +}