This commit is contained in:
2026-03-20 10:43:32 -05:00
parent 3ee33e4bfd
commit 659cc20e38
8 changed files with 484 additions and 63 deletions

View File

@@ -0,0 +1,10 @@
{ lib, namespace, ... }:
with lib;
let
inherit (lib.${namespace}) mkOpt;
in
{
options.${namespace}.services.home-assistant.dashboards =
mkOpt (types.listOf types.attrs) [ ]
"Home Assistant dashboards configuration";
}