From 08d3ca58c7724629b89aeeabaf44847e1afdf9d6 Mon Sep 17 00:00:00 2001 From: "J.P. Krauss" Date: Wed, 4 May 2022 09:58:35 -0700 Subject: [PATCH] Initial Commit --- README.md | 1 + configuration.yaml | 40 ++++++++++++++++++++++++++++++++++++++++ lovelace/dashboards.yaml | 0 lovelace/resources.yaml | 0 4 files changed, 41 insertions(+) create mode 100644 README.md create mode 100644 configuration.yaml create mode 100644 lovelace/dashboards.yaml create mode 100644 lovelace/resources.yaml diff --git a/README.md b/README.md new file mode 100644 index 0000000..b58ec3f --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# Home Assistant Configuration for the KraussNet Home diff --git a/configuration.yaml b/configuration.yaml new file mode 100644 index 0000000..7db1ea9 --- /dev/null +++ b/configuration.yaml @@ -0,0 +1,40 @@ +--- +# Main Home Assistant Configuration + +homeassistant: + name: Home + + # Location and Time Zone + latitude: !secret home_latitude # dummy: 0.0 + longitude: !secret home_longitude # dummy: 0.0 + elevation: 10 # meters, WGS84 + time_zone: America/Los_Angeles + + # Measurement System + unit_system: imperial + currency: USD + + # URL and Access Control + internal_url: !secret http_internal_url + external_url: !secret http_external_url + auth_mfa_modules: + - type: totp + auth_providers: + - type: homeassistant + - type: trusted_networks + trusted_networks: + - 127.0.0.1 + - !secret lan_net_ip4 + - !secret tablet_net_ip4 + + # Customization and Packages + customize: !include customize.yaml + packages: !include_dir_named packages + + +# Configure Lovelace/Dashboards for YAML Configuration +lovelace: + mode: yaml + resources: !include lovelace/resources.yaml + dashboards: !include lovelace/dashboards.yaml + diff --git a/lovelace/dashboards.yaml b/lovelace/dashboards.yaml new file mode 100644 index 0000000..e69de29 diff --git a/lovelace/resources.yaml b/lovelace/resources.yaml new file mode 100644 index 0000000..e69de29