stockholm/makefu/2configs/home/ham/automation/daily_speedtext.nix
2022-09-23 23:41:30 +02:00

18 lines
269 B
Nix

{
services.home-assistant.config.automation =
[
{
trigger = [
{ platform = "time"; at = "03:21"; }
];
action =
[
{
service = "speedtestdotnet.speedtest";
}
];
}
];
}