about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--modules/services/blocky/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/services/blocky/default.nix b/modules/services/blocky/default.nix
index 4a36825..d308bf3 100644
--- a/modules/services/blocky/default.nix
+++ b/modules/services/blocky/default.nix
@@ -65,6 +65,18 @@ in
             ];
           };
 
+          whiteLists = rec {
+            # Blocky will block all domains except ones in the whitelist
+            # IF there is no matching entry in blacklists
+            falsePositives = [
+              "https://gist.githubusercontent.com/sefidel/7c7a8dbbc912bcd665d9005e2ba120e1/raw"
+            ];
+
+            ads = falsePositives;
+            phishing = falsePositives;
+            tracking = falsePositives;
+          };
+
           clientGroupsBlock = {
             default = [ "ads" "phishing" "tracking" ];
           };