From 2b1c0a3ed9fedd42e325efccef05df5b74c551c2 Mon Sep 17 00:00:00 2001 From: tux Date: Sat, 12 Jul 2025 19:26:37 +0530 Subject: [PATCH] feat: add fan profile and change active profile to balanced --- hosts/canopus/default.nix | 51 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) diff --git a/hosts/canopus/default.nix b/hosts/canopus/default.nix index 2759307..2e357e9 100755 --- a/hosts/canopus/default.nix +++ b/hosts/canopus/default.nix @@ -290,7 +290,56 @@ ''; profileConfig.text = '' ( - active_profile: Quiet, + active_profile: Balanced, + ) + ''; + fanCurvesConfig.text = '' + ( + profiles: ( + balanced: [ + ( + fan: CPU, + pwm: (2, 22, 45, 68, 91, 153, 153, 153), + temp: (55, 62, 66, 70, 74, 78, 78, 78), + enabled: true, + ), + ( + fan: GPU, + pwm: (2, 25, 48, 71, 94, 165, 165, 165) + temp: (55, 62, 66, 70, 74, 78, 78, 78), + enabled: true, + ), + ], + performance: [ + ( + fan: CPU, + pwm: (35, 68, 79, 91, 114, 175, 175, 175), + temp: (58, 62, 66, 70, 74, 78, 78, 78), + enabled: true, + ), + ( + fan: GPU, + pwm: (35, 71, 84, 94, 119, 188, 188, 188), + temp: (58, 62, 66, 70, 74, 78, 78, 78), + enabled: true, + ), + ], + quiet: [ + ( + fan: CPU, + pwm: (2, 12, 25, 35, 48, 61, 84, 90), + temp: (55, 62, 66, 70, 74, 78, 82, 82), + enabled: true, + ), + ( + fan: GPU, + pwm: (2, 12, 25, 35, 48, 61, 84, 84), + temp: (55, 62, 66, 70, 74, 78, 82, 82), + enabled: true, + ), + ], + custom: [], + ), ) ''; };