summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/home/ham/automation/daily_speedtext.nix
blob: 70d59f6e197f41bd51eef15b1971579e30d9cb88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  services.home-assistant.config.automation =
    [
      {
        trigger = [
          { platform = "time"; at = "03:21"; }
        ];
        action =
        [
          {
            service = "speedtestdotnet.speedtest";
          }
        ];
      }
  ];

}