adguardhome in h001

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-04-30 14:26:41 -05:00
parent 3478c743ce
commit ae22a081c8
3 changed files with 21 additions and 0 deletions

View file

@ -30,6 +30,7 @@
ros_neovim.nixosModules.default
./configuration.nix
./hardware-configuration.nix
./mods
(import ./containers { inherit common; })
(
{ config, pkgs, ... }:

View file

@ -0,0 +1,12 @@
{
...
}:
{
config = {
services.adguardhome = {
enable = true;
allowDHCP = true;
openFirewall = true;
};
};
}

View file

@ -0,0 +1,8 @@
{
...
}:
{
imports = [
./adguardhome.nix
];
}