stockholm/lass/2configs/privoxy.nix

13 lines
180 B
Nix
Raw Normal View History

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