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