nixos-module: use gardenfence blocklist

This commit is contained in:
Astro 2023-07-25 01:20:28 +02:00
parent 618f27ca41
commit fbc08e5a07
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ in
path = with pkgs; [ coreutils wget ];
script = ''
T=$(mktemp blocklistXXXX)
wget -O $T https://rapidblock.org/blocked_domains.csv
wget -O $T https://raw.githubusercontent.com/gardenfence/blocklist/main/gardenfence.txt
chmod a+r $T
mv $T ${lib.escapeShellArg blocklistPath}
'';