add adguard

This commit is contained in:
2024-10-17 12:58:54 +05:30
parent c17c9699e3
commit bfc34a0011
2 changed files with 10 additions and 0 deletions

View File

@ -2,6 +2,8 @@
imports = [
./hardware-configuration.nix
../common
../../modules/nixos/adguard.nix
];
boot.initrd.availableKernelModules = [

View File

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