rp5-homelab/configs/homeassistant/configuration.yaml
Hofmann Engineer d67c33f960 Add Home Assistant configuration files
- configuration.yaml (main HA config)
- ui-lovelace.yaml (dashboard with System Admin view)
- automations.yaml
- scripts.yaml

🤖 Generated with Claude Code (https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-02 03:35:05 +00:00

42 lines
827 B
YAML

# Loads default set of integrations. Do not remove.
default_config:
# Load packages for better organization
homeassistant:
packages: !include_dir_named packages
# HTTP configuration for reverse proxy
http:
use_x_forwarded_for: true
trusted_proxies:
- 192.168.1.50
- 127.0.0.1
- ::1
- 172.21.0.0/16
server_host:
- homeassistant.local
- ha.local
- home.rp5
- 192.168.1.50
# Load frontend themes from the themes folder
frontend:
themes: !include_dir_merge_named themes
# Lovelace UI mode
lovelace:
mode: yaml
resources: []
dashboards:
lovelace-yaml:
mode: yaml
filename: ui-lovelace.yaml
title: My Smart Home
icon: mdi:home
show_in_sidebar: true
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml