188 lines
5.2 KiB
Nix
188 lines
5.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
inherit (import ../hardware/networks.nix) interfaces;
|
|
wg = interfaces.wireguard0;
|
|
wgIfname = wg.ifname;
|
|
brIfname = interfaces.main'.bridgeName;
|
|
in {
|
|
# For debugging purposes
|
|
environment.systemPackages = with pkgs; [ tcpdump dnsutils ];
|
|
services.resolved.extraConfig = ''
|
|
DNSStubListener=off
|
|
'';
|
|
systemd.network.networks."20-${brIfname}".networkConfig.DNS = lib.mkForce "127.0.0.1";
|
|
systemd.network.networks."90-${wgIfname}".networkConfig.DNS = lib.mkForce "127.0.0.1";
|
|
|
|
networking.firewall = {
|
|
interfaces.${wgIfname} = {
|
|
allowedTCPPorts = [
|
|
config.services.blocky.settings.port
|
|
config.services.grafana.settings.server.http_port
|
|
];
|
|
allowedUDPPorts = [
|
|
config.services.blocky.settings.port
|
|
];
|
|
};
|
|
};
|
|
|
|
# TODO: DoH (https://unbound.docs.nlnetlabs.nl/en/latest/topics/privacy/dns-over-https.html)
|
|
services.unbound = {
|
|
enable = true;
|
|
settings = {
|
|
server = {
|
|
root-hints = "${config.services.unbound.stateDir}/root.hints";
|
|
port = "553";
|
|
interface = [
|
|
"127.0.0.1" wg.IPv4.address
|
|
"::1" wg.IPv6.address
|
|
];
|
|
access-control = [
|
|
"0.0.0.0/0 refuse"
|
|
"127.0.0.0/8 allow"
|
|
"${wg.IPv4.subnet} allow"
|
|
"::0/0 refuse"
|
|
"::1 allow"
|
|
"${wg.IPv4.subnet} allow"
|
|
];
|
|
private-address = [
|
|
"127.0.0.0/8"
|
|
"${wg.IPv4.subnet}"
|
|
"::1"
|
|
"${wg.IPv4.subnet}"
|
|
];
|
|
hide-version = "yes";
|
|
aggressive-nsec = "yes";
|
|
cache-max-ttl = "86400";
|
|
cache-min-ttl = "600";
|
|
deny-any = "yes";
|
|
do-ip4 = "yes";
|
|
do-ip6 = "yes";
|
|
do-tcp = "yes";
|
|
do-udp = "yes";
|
|
harden-algo-downgrade = "yes";
|
|
harden-dnssec-stripped = "yes";
|
|
harden-glue = "yes";
|
|
harden-large-queries = "yes";
|
|
harden-referral-path = "yes";
|
|
harden-short-bufsize = "yes";
|
|
hide-identity = "yes";
|
|
minimal-responses = "yes";
|
|
msg-cache-size = "128m";
|
|
neg-cache-size = "4m";
|
|
prefer-ip6 = "no";
|
|
prefetch = "yes";
|
|
prefetch-key = "yes";
|
|
qname-minimisation = "yes";
|
|
rrset-cache-size = "256m";
|
|
rrset-roundrobin = "yes";
|
|
serve-expired = "yes";
|
|
so-rcvbuf = "4m";
|
|
so-reuseport = "yes";
|
|
so-sndbuf = "4m";
|
|
unwanted-reply-threshold = "100000";
|
|
use-caps-for-id = "yes";
|
|
};
|
|
};
|
|
};
|
|
systemd.services.root-hints = {
|
|
script = ''
|
|
${pkgs.wget}/bin/wget -O ${config.services.unbound.stateDir}/root.hints https://www.internic.net/domain/named.root
|
|
'';
|
|
serviceConfig.Type = "oneshot";
|
|
startAt = "1 0 1 */1 *";
|
|
};
|
|
# Blocky + prometheus + grafana
|
|
services.blocky = {
|
|
enable = true;
|
|
settings = {
|
|
upstream.default = [ "127.0.0.1:553" "[::1]:553" ];
|
|
upstreamTimeout = "10s";
|
|
bootstrapDns = [{ upstream = "9.9.9.9"; }];
|
|
blocking = {
|
|
blackLists.ads = [
|
|
"https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts"
|
|
];
|
|
clientGroupsBlock.default = [ "ads" ];
|
|
};
|
|
# disable caching (use unbound)
|
|
caching = {
|
|
minTime = -1;
|
|
maxTime = -1;
|
|
cacheTimeNegative = -1;
|
|
prefetching = false;
|
|
};
|
|
port = 53;
|
|
httpPort = "127.0.0.1:4000";
|
|
prometheus.enable = true;
|
|
queryLog = {
|
|
type = "console";
|
|
};
|
|
};
|
|
};
|
|
services.prometheus = {
|
|
enable = true;
|
|
listenAddress = "127.0.0.1";
|
|
globalConfig.scrape_interval = "15s";
|
|
globalConfig.evaluation_interval = "15s";
|
|
scrapeConfigs = [{
|
|
job_name = "blocky";
|
|
static_configs = [{
|
|
targets = [ config.services.blocky.settings.httpPort ];
|
|
}];
|
|
}];
|
|
};
|
|
services.grafana = {
|
|
enable = true;
|
|
settings = {
|
|
analytics.reporting_enabled = false;
|
|
server = {
|
|
domain = "${wg.IPv4.address}";
|
|
http_addr = "${wg.IPv4.address}";
|
|
enable_gzip = true;
|
|
};
|
|
# Grafana can be accessed only through wireguard, so it's secure enough
|
|
security = {
|
|
admin_user = "admin";
|
|
admin_password = "admin";
|
|
# admin_password = "$__file(/var/secrets/grafana)";
|
|
};
|
|
panels.disable_sanitize_html = true;
|
|
};
|
|
provision = {
|
|
enable = true;
|
|
datasources.settings = {
|
|
datasources = [{
|
|
name = "Prometheus";
|
|
type = "prometheus";
|
|
access = "proxy";
|
|
orgId = 1;
|
|
uid = "Y4SSG429DWCGDQ3R";
|
|
url = "http://127.0.0.1:${toString config.services.prometheus.port}";
|
|
isDefault = true;
|
|
jsonData = {
|
|
graphiteVersion = "1.1";
|
|
tlsAuth = false;
|
|
tlsAuthWithCACert = false;
|
|
};
|
|
version = 1;
|
|
editable = true;
|
|
}];
|
|
};
|
|
dashboards = {
|
|
settings = {
|
|
providers = [{
|
|
name = "My Dashboards";
|
|
options.path = "/etc/grafana-dashboards";
|
|
}];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
environment.etc = {
|
|
"grafana-dashboards/blocky_rev3.json" = {
|
|
source = ../../../misc/grafana_blocky_rev3.json;
|
|
group = "grafana";
|
|
user = "grafana";
|
|
};
|
|
};
|
|
} |