Initial configuration with split config files and without .storage. Files with secrets excluded and ignored.
This commit is contained in:
54
configuration.yaml
Normal file
54
configuration.yaml
Normal file
@@ -0,0 +1,54 @@
|
||||
# Configure a default setup of Home Assistant (frontend, api, etc)
|
||||
default_config:
|
||||
|
||||
# Enable SSL/TLS
|
||||
http:
|
||||
server_port: 443
|
||||
ssl_certificate: /ssl/fullchain.pem
|
||||
ssl_key: /ssl/privkey.pem
|
||||
|
||||
# Text to speech
|
||||
tts:
|
||||
- platform: google_translate
|
||||
|
||||
# Include modules
|
||||
group: !include groups.yaml
|
||||
automation: !include automations.yaml
|
||||
automation wled: !include automations_wled.yaml
|
||||
automation webhooks: !include automations_webhooks.yaml
|
||||
script: !include scripts.yaml
|
||||
scene: !include scenes.yaml
|
||||
|
||||
# Enable additional integrations
|
||||
# Enable 'wake_on_lan' intrgration
|
||||
wake_on_lan:
|
||||
# Configure LG WebOS TV integration
|
||||
webostv: !include webostv.yaml
|
||||
|
||||
# Enable customizations
|
||||
homeassistant:
|
||||
customize: !include customize.yaml
|
||||
|
||||
# Spotify
|
||||
spotify: !include spotify.yaml
|
||||
|
||||
# Additional sensors
|
||||
sensor: !include sensors.yaml
|
||||
|
||||
# Template sensors
|
||||
template:
|
||||
- sensor:
|
||||
- name: "Line Power Total"
|
||||
unit_of_measurement: "W"
|
||||
icon: mdi:flash
|
||||
state: >
|
||||
{% set phase_a = states('sensor.line_power_channel_a_power') | float %}
|
||||
{% set phase_b = states('sensor.line_power_channel_b_power') | float %}
|
||||
{% set phase_c = states('sensor.line_power_channel_c_power') | float %}
|
||||
{{ (phase_a + phase_b + phase_c) | round(1) }}
|
||||
|
||||
# calendar integration
|
||||
calendar: !include calendars.yaml
|
||||
|
||||
# DB-recorder configuration
|
||||
recorder: !include recorder.yaml
|
Reference in New Issue
Block a user