11 lines
232 B
Nix
Executable File
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";
|
|
}
|