From 45a4a8820d1453feb28dd8572caa7ae6235b307b Mon Sep 17 00:00:00 2001 From: Chris Dombroski Date: Tue, 31 Dec 2024 11:24:23 -0500 Subject: [PATCH] Fix blocklist location --- nixos-modules/unbound.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos-modules/unbound.nix b/nixos-modules/unbound.nix index e614f24..7f5940f 100644 --- a/nixos-modules/unbound.nix +++ b/nixos-modules/unbound.nix @@ -9,7 +9,7 @@ pkgs.wget ]; script = '' - wget -nv -O - https://raw.githubusercontent.com/hagezi/dns-blocklists/main/unbound/tif.blacklist.conf > /tmp/new.conf + wget -nv -O - https://raw.githubusercontent.com/hagezi/dns-blocklists/main/rpz/tif.txt > /tmp/new.conf echo 'local-zone: "tiktok.com." always_nxdomain' >> /tmp/new.conf echo 'local-zone: "iogames.space." always_nxdomain' >> /tmp/new.conf echo 'local-zone: "taming.io." always_nxdomain' >> /tmp/new.conf