Files
hass/configuration.yaml
T
Ben Melchior 52b0376aca Update Home Assistant configuration and automations
- Updated .ha_run.lock to reflect the new Home Assistant version 2026.4.2.
- Enhanced automations.yaml with improved entity targeting and additional automation actions for window shading.
- Refactored configuration.yaml to include templates from a separate file for better organization.
- Added new ESPHome configurations for window sensors and updated KNX configurations for door contacts and buttons.
- Removed deprecated pv_to_dhw.yaml package to streamline the project.
2026-04-20 21:00:56 +02:00

37 lines
899 B
YAML

# Loads default set of integrations. Do not remove.
default_config:
http:
server_port: 443
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem
recorder:
db_url: !secret psql_string
db_retry_wait: 15 # Wait 15 seconds before retrying
exclude:
domains:
- automation
- updater
entity_globs:
- sensor.weather_*
entities:
- sun.sun # Don't record sun data
- sensor.last_boot # Comes from 'systemmonitor' sensor platform
- sensor.date
event_types:
- call_service # Don't record service calls
# Load frontend themes from the themes folder
frontend:
themes: !include_dir_merge_named themes
# Include packages
homeassistant:
packages: !include_dir_named packages
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
knx: !include knx/knx.yaml
template: !include templates.yaml