mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
vanadium/connectivity: dns block hategroups
This commit is contained in:
parent
e537aebd15
commit
6c8052427e
2 changed files with 42 additions and 7 deletions
|
|
@ -201,23 +201,30 @@
|
||||||
lb_strategy = "p2";
|
lb_strategy = "p2";
|
||||||
lb_estimator = true;
|
lb_estimator = true;
|
||||||
|
|
||||||
# Prevent building up reliance on chatbots
|
|
||||||
# Gotta preserve that thinking ability of my smoof bwain
|
|
||||||
blocked_names = {
|
blocked_names = {
|
||||||
|
# Blocklists are made of one pattern per line.
|
||||||
|
# https://github.com/DNSCrypt/dnscrypt-proxy/blob/fa59f990431a49b6485f63f96601bc7e64017bf8/dnscrypt-proxy/example-dnscrypt-proxy.toml#L583C4-L583C75
|
||||||
blocked_names_file = let
|
blocked_names_file = let
|
||||||
sources = import ../../../../npins;
|
sources = import ../../../../npins;
|
||||||
ai-blocklist = sources.ai-blocklist + "/noai_hosts.txt";
|
|
||||||
|
|
||||||
# Blocklists are made of one pattern per line.
|
# Prevent building up reliance on chatbots
|
||||||
# https://github.com/DNSCrypt/dnscrypt-proxy/blob/fa59f990431a49b6485f63f96601bc7e64017bf8/dnscrypt-proxy/example-dnscrypt-proxy.toml#L583C4-L583C75
|
# Gotta preserve that thinking ability of my smoof bwain
|
||||||
blocked_names = lib.pipe (builtins.readFile ai-blocklist) [
|
ai_list = lib.pipe (builtins.readFile "${sources.ai-blocklist}/noai_hosts.txt") [
|
||||||
(lib.replaceStrings ["\r\n"] ["\n"]) # convert to unix ending just in case
|
(lib.replaceStrings ["\r\n"] ["\n"]) # convert to unix ending just in case
|
||||||
(lib.splitString "\n")
|
(lib.splitString "\n")
|
||||||
(builtins.filter (x: ! (x == "" || lib.hasPrefix "#" x)))
|
(builtins.filter (x: ! (x == "" || lib.hasPrefix "#" x)))
|
||||||
(builtins.map (x: builtins.elemAt (lib.splitString " " x) 1)) # remove 0.0.0.0
|
(builtins.map (x: builtins.elemAt (lib.splitString " " x) 1)) # remove 0.0.0.0
|
||||||
];
|
];
|
||||||
|
|
||||||
|
hategroup-list = lib.pipe (builtins.readFile "${sources.hategroup-blocklist}/blocklist.txt") [
|
||||||
|
(lib.replaceStrings ["\r\n"] ["\n"]) # convert to unix ending just in case
|
||||||
|
(lib.splitString "\n")
|
||||||
|
(builtins.filter (x: ! (x == "" || lib.hasPrefix "#" x)))
|
||||||
|
];
|
||||||
|
|
||||||
|
combined_lists = ai_list ++ hategroup-list;
|
||||||
in
|
in
|
||||||
pkgs.writeText "no-ai-blocklist" (builtins.concatStringsSep "\n" blocked_names);
|
pkgs.writeText "dnsblocklist" (builtins.concatStringsSep "\n" combined_lists);
|
||||||
};
|
};
|
||||||
|
|
||||||
# Add this to test if dnscrypt-proxy is actually used to resolve DNS requests
|
# Add this to test if dnscrypt-proxy is actually used to resolve DNS requests
|
||||||
|
|
|
||||||
|
|
@ -105,6 +105,34 @@
|
||||||
"hash": "0g4izwn5k7qpavlk3w41a92rhnp4plr928vmrhc75041vzm3vb1l",
|
"hash": "0g4izwn5k7qpavlk3w41a92rhnp4plr928vmrhc75041vzm3vb1l",
|
||||||
"frozen": true
|
"frozen": true
|
||||||
},
|
},
|
||||||
|
"hategroup-blocklist": {
|
||||||
|
"type": "Git",
|
||||||
|
"repository": {
|
||||||
|
"type": "GitHub",
|
||||||
|
"owner": "chigh",
|
||||||
|
"repo": "hategroup-dnsbl"
|
||||||
|
},
|
||||||
|
"branch": "master",
|
||||||
|
"submodules": false,
|
||||||
|
"revision": "cc19c050997d5f54014bb20c764b131e003dfb17",
|
||||||
|
"url": "https://github.com/chigh/hategroup-dnsbl/archive/cc19c050997d5f54014bb20c764b131e003dfb17.tar.gz",
|
||||||
|
"hash": "1x1nhy0717bav35z6aid0224izmcsrg3knys64xszhslh266p429",
|
||||||
|
"frozen": true
|
||||||
|
},
|
||||||
|
"hategroup-dnsbl": {
|
||||||
|
"type": "Git",
|
||||||
|
"repository": {
|
||||||
|
"type": "GitHub",
|
||||||
|
"owner": "chigh",
|
||||||
|
"repo": "hategroup-dnsbl"
|
||||||
|
},
|
||||||
|
"branch": "master",
|
||||||
|
"submodules": false,
|
||||||
|
"revision": "cc19c050997d5f54014bb20c764b131e003dfb17",
|
||||||
|
"url": "https://github.com/chigh/hategroup-dnsbl/archive/cc19c050997d5f54014bb20c764b131e003dfb17.tar.gz",
|
||||||
|
"hash": "1x1nhy0717bav35z6aid0224izmcsrg3knys64xszhslh266p429",
|
||||||
|
"frozen": true
|
||||||
|
},
|
||||||
"home-manager": {
|
"home-manager": {
|
||||||
"type": "Git",
|
"type": "Git",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue