Migrated Adguard from Docker

This commit is contained in:
2026-04-11 12:00:07 +02:00
parent aa301f7338
commit a9b52f8e58
2 changed files with 141 additions and 0 deletions

View File

@@ -5,6 +5,7 @@
../../nixos/roles/matrix.nix ../../nixos/roles/matrix.nix
../../nixos/roles/postgresql.nix ../../nixos/roles/postgresql.nix
../../nixos/roles/wyl.nix ../../nixos/roles/wyl.nix
../../nixos/roles/adguard.nix
]; ];
networking = { networking = {

140
nixos/roles/adguard.nix Normal file
View File

@@ -0,0 +1,140 @@
{
config,
lib,
pkgs,
...
}:
let
primaryInterface = config.systemd.network.networks."10-ethernet".matchConfig.Name;
adguardPort = 3000;
in
{
services.adguardhome = {
enable = true;
mutableSettings = true;
allowDHCP = true;
settings = {
http.address = "0.0.0.0:${toString adguardPort}";
users = [
{
name = "DerGrumpf";
password = "$2a$10$EyuPHKxu0YZ9sXl4ZNMzRuvYCKWOeCobTkpXUJBhL14CCkWCY6FRm";
}
];
dns = {
bind_hosts = [ "0.0.0.0" ];
port = 53;
upstream_dns = [
"https://dns10.quad9.net/dns-query"
"https://dns.adguard-dns.com/dns-query"
"https://0ms.dev/dns-query"
"https://dns.cloudflare.com/dns-query"
"https://security.cloudflare-dns.com/dns-query"
];
bootstrap_dns = [
"9.9.9.10"
"149.112.112.10"
];
fallback_dns = [
"1.1.1.1"
"8.8.8.8"
];
upstream_mode = "load_balance";
};
dhcp = {
enabled = false;
interface_name = primaryInterface;
local_domain_name = "lan";
dhcpv4 = {
gateway_ip = "192.168.2.1";
subnet_mask = "255.255.255.0";
range_start = "192.168.2.150";
range_end = "192.168.2.200";
lease_duration = 86400;
icmp_timeout_msec = 1000;
};
dhcpv6 = {
lease_duration = 86400;
ra_slaac_only = false;
ra_allow_slaac = false;
};
};
filters = [
# --- existing ---
{
enabled = true;
url = "https://adguardteam.github.io/HostlistsRegistry/assets/filter_1.txt";
name = "AdGuard DNS filter";
id = 1;
}
{
enabled = true;
url = "https://adguardteam.github.io/HostlistsRegistry/assets/filter_2.txt";
name = "AdAway Default Blocklist";
id = 2;
}
# --- malware & phishing ---
{
enabled = true;
url = "https://adguardteam.github.io/HostlistsRegistry/assets/filter_9.txt";
name = "The Big List of Hacked Malware Web Sites";
id = 3;
}
{
enabled = true;
url = "https://adguardteam.github.io/HostlistsRegistry/assets/filter_11.txt";
name = "Malicious URL Blocklist (URLhaus)";
id = 4;
}
# --- telemetry ---
{
enabled = true;
url = "https://adguardteam.github.io/HostlistsRegistry/assets/filter_3.txt";
name = "AWAvenue Ads Rule";
id = 5;
}
{
enabled = true;
url = "https://adguardteam.github.io/HostlistsRegistry/assets/filter_54.txt";
name = "HaGeZi's Windows/Office Tracker Blocklist";
id = 6;
}
# --- Smart TV / IoT ---
{
enabled = true;
url = "https://adguardteam.github.io/HostlistsRegistry/assets/filter_59.txt";
name = "HaGeZi's Smart TV Blocklist";
id = 7;
}
];
filtering = {
filtering_enabled = true;
protection_enabled = true;
safe_search.enabled = false;
parental_enabled = false;
safebrowsing_enabled = false;
};
};
};
networking.firewall = {
allowedTCPPorts = [
53 # DNS
adguardPort
];
allowedUDPPorts = [
53 # DNS
67 # DCHP
];
};
}