From f11ba8c63c7ee8c854334daed01b90e2d7624b0d Mon Sep 17 00:00:00 2001 From: Ahwx Date: Sun, 18 May 2025 14:09:33 +0200 Subject: [PATCH] feat: adds services for lily to run --- modules/services/lily.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 modules/services/lily.nix diff --git a/modules/services/lily.nix b/modules/services/lily.nix new file mode 100644 index 0000000..2e33b08 --- /dev/null +++ b/modules/services/lily.nix @@ -0,0 +1,9 @@ +{ ... }: +{ + imports = + [ (import ./docker.nix) ] + ++ [ (import ./monitoring.nix) ] + ++ [ (import ./smart-monitoring.nix) ] + ++ [ (import ./unifi.nix) ] + ++ [ (import ./grafana.nix) ]; +}