diff options
author | makefu <github@syntax-fehler.de> | 2020-03-13 10:41:23 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2020-03-13 10:41:23 +0100 |
commit | c325d7d6cfd6a11b6d3e4e83d06801de3c97b48a (patch) | |
tree | cc7711e9ee7ffa24a171e2d035616aaf4ed7eecc /makefu/2configs/ham/default.nix | |
parent | f28d580a4f86041d6f0df9482315d36673d8ef9d (diff) |
ma ham: update home-assistant config
Diffstat (limited to 'makefu/2configs/ham/default.nix')
-rw-r--r-- | makefu/2configs/ham/default.nix | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/makefu/2configs/ham/default.nix b/makefu/2configs/ham/default.nix index 3fbe1187f..53723299c 100644 --- a/makefu/2configs/ham/default.nix +++ b/makefu/2configs/ham/default.nix @@ -13,6 +13,7 @@ let zigbee = import ./multi/zigbee2mqtt.nix; #flurlicht = import ./multi/flurlicht.nix; kurzzeitwecker = import ./multi/kurzzeitwecker.nix; + firetv_restart = import ./multi/firetv_restart.nix; # switch # automation # binary_sensor @@ -45,6 +46,9 @@ in { conversation = {}; history = {}; logbook = {}; + logger = { + default = "info"; + }; tts = [ { platform = "google_translate"; language = "de"; @@ -132,12 +136,14 @@ in { # light = flurlicht.light; http = { }; switch = []; - automation = - (import ./automation/firetv_restart.nix) - kurzzeitwecker.automation - #++ flurlicht.automation - ++ zigbee.automation; - script = kurzzeitwecker.script; # dict + automation = [] + ++ (import ./automation/firetv_restart.nix) + ++ kurzzeitwecker.automation + #++ flurlicht.automation + ++ zigbee.automation; + script = + { } + // kurzzeitwecker.script; # dict }; enable = true; configDir = hassdir; |