From 8e6c9b6340a1276178c8095fecf1df86f291fd98 Mon Sep 17 00:00:00 2001 From: Emmet Date: Mon, 1 Apr 2024 21:10:08 -0500 Subject: [PATCH] Opting for performance while on battery --- system/hardware/power.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/hardware/power.nix b/system/hardware/power.nix index eef4d28..8d014be 100644 --- a/system/hardware/power.nix +++ b/system/hardware/power.nix @@ -19,13 +19,13 @@ CPU_SCALING_GOVERNOR_ON_AC = "performance"; CPU_SCALING_GOVERNOR_ON_BAT = "schedutil"; - CPU_ENERGY_PERF_POLICY_ON_BAT = "power"; + CPU_ENERGY_PERF_POLICY_ON_BAT = "performance"; CPU_ENERGY_PERF_POLICY_ON_AC = "performance"; CPU_MIN_PERF_ON_AC = 0; CPU_MAX_PERF_ON_AC = 100; CPU_MIN_PERF_ON_BAT = 0; - CPU_MAX_PERF_ON_BAT = 80; + CPU_MAX_PERF_ON_BAT = 100; }; };