From a54974412751c98dec78b5e3977afc4a97aadea9 Mon Sep 17 00:00:00 2001 From: makefu Date: Wed, 18 Nov 2020 20:50:43 +0100 Subject: ma bureautomation: move to 20.09 style imports --- .../2configs/bureautomation/sensor/airquality.nix | 21 +++++---- makefu/2configs/bureautomation/sensor/espeasy.nix | 12 +++-- makefu/2configs/bureautomation/sensor/influxdb.nix | 18 -------- makefu/2configs/bureautomation/sensor/outside.nix | 54 ++++++++++++---------- .../bureautomation/sensor/tasmota_firmware.nix | 5 +- 5 files changed, 52 insertions(+), 58 deletions(-) delete mode 100644 makefu/2configs/bureautomation/sensor/influxdb.nix (limited to 'makefu/2configs/bureautomation/sensor') diff --git a/makefu/2configs/bureautomation/sensor/airquality.nix b/makefu/2configs/bureautomation/sensor/airquality.nix index 217fa959..7d95c3c1 100644 --- a/makefu/2configs/bureautomation/sensor/airquality.nix +++ b/makefu/2configs/bureautomation/sensor/airquality.nix @@ -1,9 +1,12 @@ -[ - # coming from 2configs/stats/telegraf/ - { platform = "mqtt"; - name = "Air Quality"; - state_topic = "/telegraf/wbob/airquality"; - value_template = "{{ value_json.fields.value }}"; - unit_of_measurement = "VOC"; - } -] +{ + services.home-assistant.config.sensor = + [ + # coming from 2configs/stats/telegraf/ + { platform = "mqtt"; + name = "Air Quality"; + state_topic = "/telegraf/wbob/airquality"; + value_template = "{{ value_json.fields.value }}"; + unit_of_measurement = "VOC"; + } + ]; +} diff --git a/makefu/2configs/bureautomation/sensor/espeasy.nix b/makefu/2configs/bureautomation/sensor/espeasy.nix index 4b78ee84..c68f39f1 100644 --- a/makefu/2configs/bureautomation/sensor/espeasy.nix +++ b/makefu/2configs/bureautomation/sensor/espeasy.nix @@ -24,8 +24,10 @@ let payload_available = "Online"; payload_not_available = "Offline"; }; -in -(espeasy_dht22 "easy1") ++ -(espeasy_dht22 "easy2") ++ [ - (espeasy_ds18 "easy3" ) -] +in { + services.home-assistant.config.sensor = + (espeasy_dht22 "easy1") ++ + (espeasy_dht22 "easy2") ++ [ + (espeasy_ds18 "easy3" ) + ]; +} diff --git a/makefu/2configs/bureautomation/sensor/influxdb.nix b/makefu/2configs/bureautomation/sensor/influxdb.nix deleted file mode 100644 index 820a56c4..00000000 --- a/makefu/2configs/bureautomation/sensor/influxdb.nix +++ /dev/null @@ -1,18 +0,0 @@ -[ - #{ platform = "influxdb"; - # queries = [ - # { name = "mean value of feinstaub P1"; - # where = '' "node" = 'esp8266-1355142' ''; - # measurement = "feinstaub"; - # database = "telegraf"; - # field = "P1"; - # } - # { name = "mean value of feinstaub P2"; - # where = '' "node" = 'esp8266-1355142' ''; - # measurement = "feinstaub"; - # database = "telegraf"; - # field = "P2"; - # } - # ]; - #} -] diff --git a/makefu/2configs/bureautomation/sensor/outside.nix b/makefu/2configs/bureautomation/sensor/outside.nix index 596473f1..b5d25ecd 100644 --- a/makefu/2configs/bureautomation/sensor/outside.nix +++ b/makefu/2configs/bureautomation/sensor/outside.nix @@ -1,25 +1,29 @@ -{lib,...}: [ - { platform = "darksky"; - api_key = lib.removeSuffix "\n" - (builtins.readFile ); - language = "de"; - monitored_conditions = [ - "summary" "icon" - "nearest_storm_distance" "precip_probability" - "precip_intensity" - "temperature" # "temperature_high" "temperature_low" - "apparent_temperature" - "hourly_summary" # next 24 hours text - "humidity" - "pressure" - "uv_index" - ]; - units = "si" ; - scan_interval = "00:30:00"; - } - { platform = "luftdaten"; - name = "Ditzingen"; - sensorid = "5341"; - monitored_conditions = [ "P1" "P2" ]; - } - ] +{lib,...}: +{ + services.home-assistant.config.sensor = + [ + { platform = "darksky"; + api_key = lib.removeSuffix "\n" + (builtins.readFile ); + language = "de"; + monitored_conditions = [ + "summary" "icon" + "nearest_storm_distance" "precip_probability" + "precip_intensity" + "temperature" # "temperature_high" "temperature_low" + "apparent_temperature" + "hourly_summary" # next 24 hours text + "humidity" + "pressure" + "uv_index" + ]; + units = "si" ; + scan_interval = "00:30:00"; + } + { platform = "luftdaten"; + name = "Ditzingen"; + sensorid = "5341"; + monitored_conditions = [ "P1" "P2" ]; + } + ]; +} diff --git a/makefu/2configs/bureautomation/sensor/tasmota_firmware.nix b/makefu/2configs/bureautomation/sensor/tasmota_firmware.nix index 1a4738e1..f5f063db 100644 --- a/makefu/2configs/bureautomation/sensor/tasmota_firmware.nix +++ b/makefu/2configs/bureautomation/sensor/tasmota_firmware.nix @@ -9,8 +9,11 @@ let payload_not_available= "Offline"; }; in +{ + services.home-assistant.config.sensor = map tasmota_firmware [ "plug" "plug2" "plug3" "plug4" "plug5" "status1" "status2" "buslicht" "rfbridge" - ] + ]; +} -- cgit v1.2.3