- 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>
42 lines
827 B
YAML
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
|