cluster/containers/home-assistant/automations/alarm/retriggered.nix
main 5b85429327 Add initial CCTV to home assistant
Signed-off-by: main <magic_rb@redalder.org>
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2023-04-23 23:01:01 +02:00

36 lines
677 B
Nix

{
alias = "Alarm - ReTriggered";
id = "2f4942bc-3538-4888-bc52-84171e0b040f";
trigger = [
{
platform = "state";
entity_id = "binary_sensor.motion_sensor_occupancy";
to = "on";
}
];
condition = {
condition = "or";
conditions = [
{
condition = "state";
entity_id = "alarm_control_panel.home_alarm";
state = "triggered";
}
];
};
action = [
{
service = "camera.record";
target.entity_id = "camera.mirror_camera";
data = {
lookback = 30;
duration = 30;
filename = "/mnt/cctv/cctv-{{ states('sensor.date_time_iso') }}.mp4";
};
}
];
}