From 2261876326847d1d721b2e7891f78b9b095e5cf6 Mon Sep 17 00:00:00 2001 From: Doloro1978 Date: Wed, 24 Dec 2025 18:42:23 +0000 Subject: [PATCH] wip: meow --- hosts/doloro-laptop/laptop.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/hosts/doloro-laptop/laptop.nix b/hosts/doloro-laptop/laptop.nix index 92fcb7c..89117a4 100644 --- a/hosts/doloro-laptop/laptop.nix +++ b/hosts/doloro-laptop/laptop.nix @@ -2,13 +2,11 @@ { services.tlp = { enable = true; - extraConfig = '' - CPU_SCALING_GOVERNOR_ON_BAT=power_save - CPU_SCALING_GOVERNOR_ON_AC=performance - PCIE_ASPM_ON_AC=performance - PCIE_ASPM_ON_BAT=powersave - ''; settings = { + CPU_SCALING_GOVERNOR_ON_BAT = "power_save"; + CPU_SCALING_GOVERNOR_ON_AC = "performance"; + PCIE_ASPM_ON_AC = "performance"; + PCIE_ASPM_ON_BAT = "powersave"; START_CHARGE_THRESH_BAT0 = 40; # 40 and below it starts to charge STOP_CHARGE_THRESH_BAT0 = 80; # 80 and above it stops charging };