From 2aadb525dff1796d93066c18d6ea30e9a89a96b1 Mon Sep 17 00:00:00 2001 From: tux Date: Tue, 20 May 2025 20:37:00 +0530 Subject: [PATCH] feat: update auto-cpu-freq config --- hosts/canopus/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/hosts/canopus/default.nix b/hosts/canopus/default.nix index 1f5bd30..03a1a8a 100755 --- a/hosts/canopus/default.nix +++ b/hosts/canopus/default.nix @@ -227,15 +227,20 @@ enable = true; settings = { battery = { + platform_profile = "quiet"; governor = "powersave"; + energy_performance_preference = "power"; turbo = "never"; scaling_min_freq = 400000; scaling_max_freq = 3800000; }; charger = { - governor = "powersave"; - turbo = "never"; - scaling_max_freq = 3800000; + platform_profile = "performance"; + governor = "performance"; + energy_performance_preference = "performance"; + turbo = "auto"; + scaling_min_freq = 400000; + scaling_max_freq = 4500000; }; }; };