From 06d945fd80721bef7a67b5a4e0d108c8b2236827 Mon Sep 17 00:00:00 2001 From: Myned <dev@bjork.tech> Date: Sat, 29 Mar 2025 18:13:52 -0500 Subject: [PATCH] fw-fanctrl: modify curve --- options/custom/services/fw-fanctrl.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/options/custom/services/fw-fanctrl.nix b/options/custom/services/fw-fanctrl.nix index 584db31..950252f 100644 --- a/options/custom/services/fw-fanctrl.nix +++ b/options/custom/services/fw-fanctrl.nix @@ -25,12 +25,12 @@ in { curve = temp: speed: {inherit temp speed;}; in [ (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% + (curve 40 20) + (curve 50 30) + (curve 60 40) + (curve 70 50) + (curve 80 60) + #!! Max fan speed of 60% ]; }; };