summaryrefslogtreecommitdiffstats
path: root/lass/2configs/privoxy.nix
blob: bf5f6e20616d36207b74843a4489fff95801c0e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, ... }:

{
  services.privoxy = {
    enable = true;
    extraConfig = ''
      #use polipo
      forward / localhost:8123

      #route .onion through tor
      forward-socks4a .onion localhost:9050
    '';
  };
  services.polipo.enable = true;
}