10 lines
171 B
Nix
10 lines
171 B
Nix
{
|
|
services.privoxy = {
|
|
enable = true;
|
|
settings = {
|
|
listen-address = "100.101.102.1:8118";
|
|
};
|
|
};
|
|
|
|
networking.firewall.allowedTCPPorts = [ 8118 ];
|
|
}
|