From 24822d938881e873a5410975474fb7fe25d2b8e0 Mon Sep 17 00:00:00 2001 From: Roman Lubij Date: Wed, 18 Feb 2026 00:35:38 +0100 Subject: [PATCH] mucho intelo --- laptop/hardware-configuration.nix | 4 ++++ laptop/modules/services.nix | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/laptop/hardware-configuration.nix b/laptop/hardware-configuration.nix index fb04372..99206d7 100644 --- a/laptop/hardware-configuration.nix +++ b/laptop/hardware-configuration.nix @@ -34,6 +34,10 @@ "mem_sleep_default=deep" "i915.enable_guc=3" "i915.enable_fbc=1" + "i915.enable_psr=0" + "i915.fastboot=1" + "i915.enable_dc=2" + "video=eDP-1:1920x1080@60e" ]; }; diff --git a/laptop/modules/services.nix b/laptop/modules/services.nix index b3e0db3..0b55787 100644 --- a/laptop/modules/services.nix +++ b/laptop/modules/services.nix @@ -9,8 +9,10 @@ settings = { CPU_SCALING_GOVERNOR_ON_AC = "performance"; CPU_SCALING_GOVERNOR_ON_BAT = "powersave"; - CPU_ENERGY_PERF_POLICY_ON_BAT = "power"; + CPU_ENERGY_PERF_POLICY_ON_BAT = "balance_power"; CPU_ENERGY_PERF_POLICY_ON_AC = "balance_performance"; + CPU_MIN_PERF_ON_BAT = 0; + CPU_MAX_PERF_ON_BAT = 80; }; }; }