diff --git a/nixos/roles/home-assistant-local/default.nix b/nixos/roles/home-assistant-local/default.nix index b367d142..180b815c 100644 --- a/nixos/roles/home-assistant-local/default.nix +++ b/nixos/roles/home-assistant-local/default.nix @@ -236,10 +236,16 @@ in } { alias = "Schlafzimmer vorheizen"; - trigger = [{ platform = "time"; at = "21:00:00"; }]; + trigger = [{ platform = "time"; at = "19:00:00"; } { platform = "time"; at = "04:00:00"; }]; condition = [{ condition = "state"; entity_id = "input_select.scene_schlafzimmer"; state = "empty"; }]; action = [{ service = "input_select.select_option"; data.option = "heat"; entity_id = "input_select.scene_schlafzimmer"; }]; } + { + alias = "Schlafzimmer nachts kühl"; + trigger = [{ platform = "time"; at = "01:00:00"; }]; + condition = [{ condition = "state"; entity_id = "input_select.scene_schlafzimmer"; state = "heat"; }]; + action = [{ service = "input_select.select_option"; data.option = "empty"; entity_id = "input_select.scene_schlafzimmer"; }]; + } { alias = "Morgens Licht an"; trigger = [{ platform = "time"; at = "08:00:00"; }];