summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/home/ham/multi/heizung.nix
blob: 73f90dfe037e192f35842b5338d6b161f86b83c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
{
  services.home-assistant.config =
    {
      # 18 Grad
      script.alle_heizungen_aus.sequence = [{
        service = "climate.set_temperature";
        target.entity_id = [ "climate.wohnzimmer_heizung" ];
        data.temperature = "18.0";
      }];
    };
}