diff options
author | makefu <github@syntax-fehler.de> | 2019-09-25 14:02:07 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2019-09-25 14:02:07 +0200 |
commit | 314a593bd0fd2e32e7cba93bd49554af1b841bd4 (patch) | |
tree | 2251df455d015b014e64d572e84cc8c89f482360 /makefu | |
parent | c11c3544abd9ec2702c61b7ae114270791a57371 (diff) |
ma bureautiomation/shutdown: fix config
Diffstat (limited to 'makefu')
-rw-r--r-- | makefu/2configs/bureautomation/automation/bureau-shutdown.nix | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/makefu/2configs/bureautomation/automation/bureau-shutdown.nix b/makefu/2configs/bureautomation/automation/bureau-shutdown.nix index 007f6064a..b9aa710c3 100644 --- a/makefu/2configs/bureautomation/automation/bureau-shutdown.nix +++ b/makefu/2configs/bureautomation/automation/bureau-shutdown.nix @@ -34,18 +34,18 @@ } { alias = "Turn off Fernseher after last in group left"; trigger = [ - { # trigger when movement was detected at the time - platform = "state"; - entity_id = "group.team"; - from = "home"; - to = "not_home"; - } - { # trigger at 18:00 no matter what - # to avoid 'everybody left before 18:00:00' - platform = "time"; - at = "18:00:00"; - } - ]; + { # trigger when movement was detected at the time + platform = "state"; + entity_id = "group.team"; + from = "home"; + to = "not_home"; + } + { # trigger at 18:00 no matter what + # to avoid 'everybody left before 18:00:00' + platform = "time"; + at = "18:00:00"; + } + ]; action = [ { service = "homeassistant.turn_off"; @@ -58,7 +58,7 @@ } { service = "notify.telegrambot"; - data = { + data_template = { title = "Bureau Shutdown"; message = "All devices are turned off due to {{ trigger.platform }}"; }; |