1
0
mirror of https://github.com/kmein/niveum synced 2026-03-28 23:31:07 +01:00

chore: move hass to configs

This commit is contained in:
2020-11-01 09:45:15 +01:00
parent 4a4d5a148d
commit d2939795ac
7 changed files with 1 additions and 1 deletions

16
configs/hass/lib.nix Normal file
View File

@@ -0,0 +1,16 @@
{
triggers = {
night = {
platform = "numeric_state";
entity_id = "sun.sun";
value_template = "{{ state.attributes.elevation }}";
below = -4.0;
};
day = {
platform = "numeric_state";
entity_id = "sun.sun";
value_template = "{{ state.attributes.elevation }}";
above = 0;
};
};
}