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

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