stockholm/makefu/2configs/home/ham/automation/find_phone.nix
2022-12-24 23:35:25 +01:00

33 lines
723 B
Nix

{
services.home-assistant.config.script = {
find_felix_phone.sequence = [
{
service = "notify.mobile_app_pixel_3a";
data = {
title= "Finde Mich!";
message= "Such Such Such";
data = {
ttl = 0;
priority = "high";
channel = "alarm_stream";
};
};
}
];
find_tablet.sequence = [
{
service = "notify.mobile_app_nova3";
data = {
title = "Finde Mich!";
message = "Such Such Such";
data = {
ttl = 0;
priority = "high";
channel = "alarm_stream";
};
};
}
];
};
}