refactor services as modules
This commit is contained in:
parent
a673e92979
commit
8cb0676ca5
6 changed files with 110 additions and 87 deletions
27
nixos/viridian/services/adguardhome/default.nix
Normal file
27
nixos/viridian/services/adguardhome/default.nix
Normal 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";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue