stockholm/makefu/2configs/home/ham/automation/daily_speedtext.nix

18 lines
269 B
Nix
Raw Normal View History

2022-09-23 21:41:30 +00:00
{
services.home-assistant.config.automation =
[
{
trigger = [
{ platform = "time"; at = "03:21"; }
];
action =
[
{
service = "speedtestdotnet.speedtest";
}
];
}
];
}