diff options
author | makefu <github@syntax-fehler.de> | 2021-03-09 22:14:51 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2021-03-09 22:14:51 +0100 |
commit | ce2aadff1c8d1d44a51c3be27570c64e14fd13c1 (patch) | |
tree | 42ea3346ff62034aae8014e00d7f475f51276e6e /makefu/2configs/ham/automation/urlaub.nix | |
parent | 914163cec3b89e2abcbc58e535e648ac9788b305 (diff) |
ma ham -> ma home/ham
Diffstat (limited to 'makefu/2configs/ham/automation/urlaub.nix')
-rw-r--r-- | makefu/2configs/ham/automation/urlaub.nix | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/makefu/2configs/ham/automation/urlaub.nix b/makefu/2configs/ham/automation/urlaub.nix deleted file mode 100644 index a6b9be96f..000000000 --- a/makefu/2configs/ham/automation/urlaub.nix +++ /dev/null @@ -1,44 +0,0 @@ -# uses: -# light.wohnzimmer_schrank_osram -# light.wohnzimmer_fernseher_led_strip -# "all" lights - -let - schranklicht = "light.wohnzimmer_schrank_osram"; - fernsehlicht = "light.wohnzimmer_fernseher_led_strip"; - final_off = "01:00"; - - turn_on = entity_id: at: - { alias = "Turn on ${entity_id} at ${at}"; - trigger = [ - { platform = "time"; inherit at; } - ]; - action = - [ - { service = "light.turn_on"; inherit entity_id; } - ]; - }; -in -{ - services.home-assistant.config = - { - automation = - [ - (turn_on schranklicht "17:30") - (turn_on fernsehlicht "19:00") - - { alias = "Always turn off the urlaub lights at ${final_off}"; - trigger = [ - { platform = "time"; at = final_off; } - ]; - action = - [ - { - service = "light.turn_off"; - entity_id = [ schranklicht fernsehlicht ]; - } - ]; - } - ]; - }; -} |