diff --git a/modules/Modules.qml b/modules/Modules.qml index 1e0702b..2ccdbf5 100644 --- a/modules/Modules.qml +++ b/modules/Modules.qml @@ -55,8 +55,8 @@ QtObject { property var temperature: ({ enable: true, interval: 2000, - warm: 60, - hot: 80 + warm: 80, + hot: 90 }) property var cpu: ({ enable: true, diff --git a/nix/hm-module.nix b/nix/hm-module.nix index b186191..3752617 100644 --- a/nix/hm-module.nix +++ b/nix/hm-module.nix @@ -109,12 +109,12 @@ in // { warm = lib.mkOption { type = lib.types.int; - default = 60; + default = 80; description = "Temperature threshold for warm state (°C)."; }; hot = lib.mkOption { type = lib.types.int; - default = 80; + default = 90; description = "Temperature threshold for hot state (°C)."; }; }