diff --git a/hosts/nuc/default.nix b/hosts/nuc/default.nix index 02e02dc..232b3a9 100644 --- a/hosts/nuc/default.nix +++ b/hosts/nuc/default.nix @@ -5,6 +5,7 @@ [ # Include the results of the hardware scan. ./hardware-configuration.nix + ./modules/adguard ./modules/networks ./modules/backup ./modules/nextcloud diff --git a/hosts/nuc/modules/adguard/default.nix b/hosts/nuc/modules/adguard/default.nix new file mode 100644 index 0000000..282d49b --- /dev/null +++ b/hosts/nuc/modules/adguard/default.nix @@ -0,0 +1,8 @@ +{ ... }: +{ + services.adguardhome = { + enable = true; + openFirewall = true; + settings.bind_port = 3000; + }; +}