From 264d9a31cef840bc941a179ee14888980cc72f7b Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Fri, 10 Dec 2021 19:42:05 +0100 Subject: [PATCH] Make heating config more precise --- nixos/roles/home-assistant-local/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nixos/roles/home-assistant-local/default.nix b/nixos/roles/home-assistant-local/default.nix index c2ed51a9..e0409387 100644 --- a/nixos/roles/home-assistant-local/default.nix +++ b/nixos/roles/home-assistant-local/default.nix @@ -259,24 +259,24 @@ in input_number = { target_temperature_schlafzimmer = { name = "Zieltemperatur Schlafzimmer"; - initial = "19"; unit_of_measurement = "°C"; - min = "15"; + min = "17"; max = "25"; + step = "0.25"; }; target_temperature_wohnzimmer = { name = "Zieltemperatur Wohnzimmer"; - initial = "19"; unit_of_measurement = "°C"; - min = "15"; + min = "17"; max = "25"; + step = "0.25"; }; target_temperature_kueche = { name = "Zieltemperatur Küche"; - initial = "19"; unit_of_measurement = "°C"; - min = "15"; + min = "17"; max = "25"; + step = "0.25"; }; }; input_select = {