configured adguard

This commit is contained in:
Rouven Seifert 2023-04-27 17:27:57 +02:00
parent f74cd440f0
commit ffdd151409
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
2 changed files with 9 additions and 0 deletions

View file

@ -5,6 +5,7 @@
[ [
# Include the results of the hardware scan. # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
./modules/adguard
./modules/networks ./modules/networks
./modules/backup ./modules/backup
./modules/nextcloud ./modules/nextcloud

View file

@ -0,0 +1,8 @@
{ ... }:
{
services.adguardhome = {
enable = true;
openFirewall = true;
settings.bind_port = 3000;
};
}