cluster/containers/home-assistant/automations/alarm/disarmed.nix

25 lines
437 B
Nix
Raw Normal View History

{
alias = "Alarm - Disarmed";
id = "a8c26d1c-3a71-4a99-b0f3-dc799495a706";
trigger = [
{
entity_id = "alarm_control_panel.home_alarm";
platform = "state";
to = "disarmed";
}
];
action = [
{
data = {
message = "Alarm Disarmed";
data = {
channel = "Motion";
importance = "high";
};
};
service = "notify.mobile_app_redrum";
}
];
}