refactor services as modules

This commit is contained in:
♥ Minnie ♥ 2023-12-01 05:31:40 +08:00
parent a673e92979
commit 8cb0676ca5
6 changed files with 110 additions and 87 deletions

View file

@ -0,0 +1,27 @@
{ ... }:
{
# Privacy protection center
services.adguardhome = {
enable = true;
openFirewall = true;
settings = {
# Web interface IP address to listen on.
bind_port = 3000;
# Web interface IP port to listen on.
bind_host = "0.0.0.0";
# Custom DNS responses
dns.rewrites = [
{ # LAN self-host domain
domain = "kanto.dev";
answer = "192.168.1.102";
}
{ # Wildcard subdomains
domain = "*.kanto.dev";
answer = "kanto.dev";
}
];
};
};
}