MyNixOS website logo
option

services.home-assistant.lovelaceConfig

Your ui-lovelace.yaml as a Nix attribute set. Setting this option will automatically set lovelace.mode to yaml.

Beware that setting this option will delete your previous ui-lovelace.yaml.

Declarations
Type
null or YAML value
Default
null
Example
{
  title = "My Awesome Home";
  views = [ {
    title = "Example";
    cards = [ {
      type = "markdown";
      title = "Lovelace";
      content = "Welcome to your **Lovelace UI**.";
    } ];
  } ];
}