From 1ed026afd890b4f2ff7aef865c20a40f754cc501 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Thu, 11 Apr 2024 20:00:44 -0300 Subject: [PATCH] adguardhome: init --- nixos.nix | 1 + services/adguardhome.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 services/adguardhome.nix diff --git a/nixos.nix b/nixos.nix index 9b6a3c7..e538616 100644 --- a/nixos.nix +++ b/nixos.nix @@ -13,6 +13,7 @@ # Include the results of the hardware scan. ./hardware-configuration.nix # Include service configuration + ./services/adguardhome.nix ./services/caddy.nix ./services/jellyfin.nix ]; diff --git a/services/adguardhome.nix b/services/adguardhome.nix new file mode 100644 index 0000000..4cf7564 --- /dev/null +++ b/services/adguardhome.nix @@ -0,0 +1,5 @@ +{ ... }: + +{ + services.adguardhome = { enable = true; }; +}