services.home-assistant.lovelaceConfig
NixOS option
Your ui-lovelace.yaml as a Nix attribute set. Setting this option will automatically configure a Lovelace dashboard in YAML mode. Beware that setting this option will delete your previous ui-lovelace.yaml
type: null or YAML 1.1 valueDefault
null
Example
declared in: nixos/modules/services/home-automation/home-assistant.nixView source on NixOS/nixpkgs →{
title = "My Awesome Home";
views = [ {
title = "Example";
cards = [ {
type = "markdown";
title = "Lovelace";
content = "Welcome to your **Lovelace UI**.";
} ];
} ];
}