puter/hosts/vessel/blocky.nix
2024-02-25 00:52:02 +01:00

23 lines
552 B
Nix

{
services.blocky = {
enable = true;
settings = {
port = 53;
upstream.default = ["https://one.one.one.one/dns-query"];
bootstrapDns = {
upstream = "https://one.one.one.one/dns-query";
ips = ["1.1.1.1" "1.0.0.1"];
};
blocking = {
blackLists.ads = ["https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts"];
clientGroupsBlock.default = ["ads"];
};
caching = {
minTime = "5m";
maxTime = "30m";
prefetching = true;
};
};
};
}