11 lines
260 B
Nix
11 lines
260 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
imports = [ ./nginx ];
|
||
|
services.adguardhome = {
|
||
|
enable = true;
|
||
|
mutableSettings = true;
|
||
|
};
|
||
|
services.nginx.virtualHosts."guard.xenia.me.uk" = import ./nginx/sites/adguardhome.nix;
|
||
|
networking.firewall.allowedTCPPorts = [ 53 2900 ];
|
||
|
}
|