From bad8e79410eed70b35d6fde6eaf060a81328b774 Mon Sep 17 00:00:00 2001 From: Konstanty Kowalewski Date: Mon, 2 Dec 2024 15:48:24 +0000 Subject: [PATCH] enable acpi.ec_no_wakeup in Thinkpad T14 AMD Gen 5 --- lenovo/thinkpad/t14/amd/gen5/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lenovo/thinkpad/t14/amd/gen5/default.nix b/lenovo/thinkpad/t14/amd/gen5/default.nix index e61a3a0..917da63 100644 --- a/lenovo/thinkpad/t14/amd/gen5/default.nix +++ b/lenovo/thinkpad/t14/amd/gen5/default.nix @@ -6,6 +6,10 @@ ../../../../../common/cpu/amd/pstate.nix ]; + # Embedded controller wake-ups drain battery in s2idle on this device + # See https://lore.kernel.org/all/ZnFYpWHJ5Ml724Nv@ohnotp/ + boot.kernelParams = [ "acpi.ec_no_wakeup=1" ]; + # For the Qualcomm NFA765 [17cb:1103] wireless network controller # See https://bugzilla.redhat.com/show_bug.cgi?id=2047878 boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") pkgs.linuxPackages_latest;