summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/home/ham/automation/pflanzen_giessen_erinnerung.nix
blob: 3aaa57bd6b25c4796d49672735b83fe8e78cf6d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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.")
      ];
    }
  ];
}