summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/home/ham/automation/find_phone.nix
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2022-12-25 01:24:17 +0100
committerlassulus <lassulus@lassul.us>2022-12-25 01:24:17 +0100
commit6e13334579f16940edb1182662d9ac58e57aba0e (patch)
tree3bb4d0b836487af026ea7daa770e789717ba1cf6 /makefu/2configs/home/ham/automation/find_phone.nix
parentc337e2593b9b28c4248cffc07edf530351df491f (diff)
parent9c46aa4ee078de84deed5ccdd5e6aaa6c4ea41ad (diff)
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/2configs/home/ham/automation/find_phone.nix')
-rw-r--r--makefu/2configs/home/ham/automation/find_phone.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/makefu/2configs/home/ham/automation/find_phone.nix b/makefu/2configs/home/ham/automation/find_phone.nix
new file mode 100644
index 00000000..d94942c9
--- /dev/null
+++ b/makefu/2configs/home/ham/automation/find_phone.nix
@@ -0,0 +1,32 @@
+{
+ 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";
+ };
+ };
+ }
+ ];
+ };
+}