universe/hosts/Infini-DL360/privoxy.nix

12 lines
183 B
Nix

{ ... }:
{
services.privoxy = {
enable = true;
settings = {
listen-address = "100.101.102.124:8118";
};
};
networking.firewall.allowedTCPPorts = [ 8118 ];
}