From 55117f19bfca77ea4e4d96115525efcd93d7bd59 Mon Sep 17 00:00:00 2001 From: Myned Date: Wed, 6 Nov 2024 11:38:55 -0600 Subject: [PATCH] fw-fanctrl: lower fan speed Signed-off-by: Myned --- options/custom/services/fw-fanctrl.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/options/custom/services/fw-fanctrl.nix b/options/custom/services/fw-fanctrl.nix index ce5c046..584db31 100644 --- a/options/custom/services/fw-fanctrl.nix +++ b/options/custom/services/fw-fanctrl.nix @@ -19,16 +19,17 @@ in { defaultStrategy = "custom"; strategies.custom = { - fanSpeedUpdateFrequency = 3; # Seconds + fanSpeedUpdateFrequency = 5; # Seconds movingAverageInterval = 30; # Seconds speedCurve = let curve = temp: speed: {inherit temp speed;}; in [ - (curve 0 0) - (curve 40 20) - (curve 50 30) - (curve 60 40) - (curve 70 50) + (curve 0 0) # Always active + (curve 40 10) + (curve 50 20) + (curve 60 30) + (curve 70 40) + (curve 80 50) #!! Max fan speed of 50% ]; };