adguardhome: init

This commit is contained in:
Alexandre Cavalheiro 2024-04-11 20:00:44 -03:00
parent 295602c99e
commit 1ed026afd8
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
2 changed files with 6 additions and 0 deletions

View file

@ -13,6 +13,7 @@
# Include the results of the hardware scan. # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
# Include service configuration # Include service configuration
./services/adguardhome.nix
./services/caddy.nix ./services/caddy.nix
./services/jellyfin.nix ./services/jellyfin.nix
]; ];

5
services/adguardhome.nix Normal file
View file

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