From 3f39b6e7c9321c5baa045f8f02e2421978c3b093 Mon Sep 17 00:00:00 2001 From: Chris Dombroski Date: Tue, 7 May 2024 20:54:41 -0400 Subject: [PATCH] less chatty download --- systems/orangepihole/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/orangepihole/configuration.nix b/systems/orangepihole/configuration.nix index 46c99f1..ae6a2a3 100644 --- a/systems/orangepihole/configuration.nix +++ b/systems/orangepihole/configuration.nix @@ -57,7 +57,7 @@ postStop = "systemctl try-reload-or-restart unbound"; path = with pkgs; [ gawk wget ]; script = '' - wget -O - https://raw.githubusercontent.com/hagezi/dns-blocklists/main/unbound/tif.blacklist.conf >> /etc/unbound/new.conf + wget -nv -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 awk '!seen[$0]++' /etc/unbound/new.conf > /etc/unbound/ads.conf