alpha
Login
or
Join now
seanaye.bsky.social
/
nixos-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
me like nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
change heat automation
author
Sean Aye
date
3 months ago
(Mar 22, 2026, 8:03 PM -0400)
commit
0853f2c7
0853f2c79b5514544b60db3794933cea2e0ffab2
parent
28a37411
28a374115184145bb459e95b502cb745081d83cf
change-id
luvotmvm
luvotmvmstylomsyurorqnsqyztsnlpv
+12
-5
1 changed file
Expand all
Collapse all
Unified
Split
hosts
mira
configuration.nix
+12
-5
hosts/mira/configuration.nix
Reviewed
···
170
170
automation = [
171
171
{
172
172
id = "1761448856909";
173
173
-
alias = "Turn off heat";
173
173
+
alias = "Lower heat at night";
174
174
trigger = [
175
175
{
176
176
platform = "time";
···
180
180
condition = [ ];
181
181
action = [
182
182
{
183
183
-
action = "climate.turn_off";
183
183
+
action = "climate.set_temperature";
184
184
target.device_id = "bfe22d32a4532f8ae991d6daffb48267";
185
185
+
data = {
186
186
+
hvac_mode = "heat";
187
187
+
temperature = 18;
188
188
+
};
185
189
}
186
190
];
187
191
mode = "single";
188
192
}
189
193
{
190
194
id = "1766200000001";
191
191
-
alias = "Turn on heat";
195
195
+
alias = "Raise heat in morning";
192
196
trigger = [
193
197
{
194
198
platform = "time";
···
198
202
condition = [ ];
199
203
action = [
200
204
{
201
201
-
action = "climate.set_hvac_mode";
205
205
+
action = "climate.set_temperature";
202
206
target.device_id = "bfe22d32a4532f8ae991d6daffb48267";
203
203
-
data.hvac_mode = "heat";
207
207
+
data = {
208
208
+
hvac_mode = "heat";
209
209
+
temperature = 21;
210
210
+
};
204
211
}
205
212
];
206
213
mode = "single";