From 7250ad345d364f1fe0b70c54cc5bc36295054fd8 Mon Sep 17 00:00:00 2001 From: sefidel Date: Tue, 20 Feb 2024 22:22:03 +0900 Subject: feat(modules/blocky): split blacklists by category --- modules/services/blocky/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/services/blocky/default.nix b/modules/services/blocky/default.nix index 5fafb5e..4a36825 100644 --- a/modules/services/blocky/default.nix +++ b/modules/services/blocky/default.nix @@ -56,13 +56,17 @@ in blackLists = { ads = [ "https://raw.githubusercontent.com/blocklistproject/Lists/master/ads.txt" + ]; + phishing = [ "https://raw.githubusercontent.com/blocklistproject/Lists/master/phishing.txt" + ]; + tracking = [ "https://raw.githubusercontent.com/blocklistproject/Lists/master/tracking.txt" ]; }; clientGroupsBlock = { - default = [ "ads" ]; + default = [ "ads" "phishing" "tracking" ]; }; }; }; -- cgit 1.4.1