diff options
author | makefu <github@syntax-fehler.de> | 2021-05-15 13:13:13 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2021-05-15 13:16:52 +0200 |
commit | 485807c22d20db9684612333cfda0b1fa63cf45a (patch) | |
tree | ba3870dcf3e1c4cfef7d6868683a459e6717dbe3 /makefu/2configs/home/ham/automation/pflanzen_giessen_erinnerung.nix | |
parent | 7f515fd150eb7672f272ee61f581ae7e0ff76e86 (diff) |
ma home/ham: add signal-rest, update automations
Diffstat (limited to 'makefu/2configs/home/ham/automation/pflanzen_giessen_erinnerung.nix')
-rw-r--r-- | makefu/2configs/home/ham/automation/pflanzen_giessen_erinnerung.nix | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/makefu/2configs/home/ham/automation/pflanzen_giessen_erinnerung.nix b/makefu/2configs/home/ham/automation/pflanzen_giessen_erinnerung.nix new file mode 100644 index 000000000..3aaa57bd6 --- /dev/null +++ b/makefu/2configs/home/ham/automation/pflanzen_giessen_erinnerung.nix @@ -0,0 +1,39 @@ +let + notify_felix = message: { + service = "notify.signal_felix"; + data.message = message; + }; + notify_home = message: { + service = "notify.signal_home"; + data.message = message; + }; +in +{ + services.home-assistant.config.automation = + [ + { + alias = "Pflanzen Giessen Erinnerung Daily"; + trigger = { + platform = "time"; + at = "12:15:00"; + }; + action = [ + (notify_felix "Es ist Mittagszeit und du kannst ruhig einmal alle Blumen im Zimmer giessen") + ]; + } + { + alias = "Pflanzen Giessen Erinnerung Weekly"; + trigger = { + platform = "time"; + at = "12:15:00"; + }; + condition = { + condition = "time"; + weekday = [ "sat" ]; + }; + action = [ + (notify_home "Es ist Wochenende und die Pflanzen würden sich über ein bisschen Wasser freuen.") + ]; + } + ]; +} |