temperature thresholds: warm 80, hot 90

This commit is contained in:
Damocles 2026-04-13 00:00:47 +02:00
parent c973bd8163
commit 28fb0e4d00
2 changed files with 4 additions and 4 deletions

View file

@ -55,8 +55,8 @@ QtObject {
property var temperature: ({ property var temperature: ({
enable: true, enable: true,
interval: 2000, interval: 2000,
warm: 60, warm: 80,
hot: 80 hot: 90
}) })
property var cpu: ({ property var cpu: ({
enable: true, enable: true,

View file

@ -109,12 +109,12 @@ in
// { // {
warm = lib.mkOption { warm = lib.mkOption {
type = lib.types.int; type = lib.types.int;
default = 60; default = 80;
description = "Temperature threshold for warm state (°C)."; description = "Temperature threshold for warm state (°C).";
}; };
hot = lib.mkOption { hot = lib.mkOption {
type = lib.types.int; type = lib.types.int;
default = 80; default = 90;
description = "Temperature threshold for hot state (°C)."; description = "Temperature threshold for hot state (°C).";
}; };
} }