From 739418d2ff1150e2318ca11b0a7f1089f1153e71 Mon Sep 17 00:00:00 2001 From: Chris Dombroski Date: Sun, 14 Apr 2024 20:54:47 -0400 Subject: [PATCH] Degrade ad blocking even further --- systems/orangepihole/configuration.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/systems/orangepihole/configuration.nix b/systems/orangepihole/configuration.nix index 824aa56..469ba30 100644 --- a/systems/orangepihole/configuration.nix +++ b/systems/orangepihole/configuration.nix @@ -56,9 +56,8 @@ startAt = "daily"; postStop = "systemctl reload unbound"; path = with pkgs; [ gawk wget ]; - #wget -O - https://raw.githubusercontent.com/hagezi/dns-blocklists/main/unbound/doh-vpn-proxy-bypass.blacklist.conf >> /etc/unbound/new.conf script = '' - wget -O - https://raw.githubusercontent.com/hagezi/dns-blocklists/main/unbound/multi.blacklist.conf > /etc/unbound/new.conf + wget -O - https://raw.githubusercontent.com/hagezi/dns-blocklists/main/unbound/light.blacklist.conf > /etc/unbound/new.conf wget -O - https://raw.githubusercontent.com/hagezi/dns-blocklists/main/unbound/tif.blacklist.conf >> /etc/unbound/new.conf echo 'local-zone: "iogames.space." always_nxdomain' >> /etc/unbound/new.conf echo 'local-zone: "taming.io." always_nxdomain' >> /etc/unbound/new.conf