Files
mjallen18 70002a19e2 hmm
2026-04-07 18:39:42 -05:00

11 lines
232 B
Nix
Executable File

{ 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";
}