me like nix
0

Configure Feed

Select the types of activity you want to include in your feed.

change heat automation

author
Sean Aye
date (Mar 22, 2026, 8:03 PM -0400) commit 0853f2c7 parent 28a37411 change-id luvotmvm
+12 -5
+12 -5
hosts/mira/configuration.nix
··· 170 170 automation = [ 171 171 { 172 172 id = "1761448856909"; 173 - alias = "Turn off heat"; 173 + alias = "Lower heat at night"; 174 174 trigger = [ 175 175 { 176 176 platform = "time"; ··· 180 180 condition = [ ]; 181 181 action = [ 182 182 { 183 - action = "climate.turn_off"; 183 + action = "climate.set_temperature"; 184 184 target.device_id = "bfe22d32a4532f8ae991d6daffb48267"; 185 + data = { 186 + hvac_mode = "heat"; 187 + temperature = 18; 188 + }; 185 189 } 186 190 ]; 187 191 mode = "single"; 188 192 } 189 193 { 190 194 id = "1766200000001"; 191 - alias = "Turn on heat"; 195 + alias = "Raise heat in morning"; 192 196 trigger = [ 193 197 { 194 198 platform = "time"; ··· 198 202 condition = [ ]; 199 203 action = [ 200 204 { 201 - action = "climate.set_hvac_mode"; 205 + action = "climate.set_temperature"; 202 206 target.device_id = "bfe22d32a4532f8ae991d6daffb48267"; 203 - data.hvac_mode = "heat"; 207 + data = { 208 + hvac_mode = "heat"; 209 + temperature = 21; 210 + }; 204 211 } 205 212 ]; 206 213 mode = "single";