Skip to content

Commit 3394443

Browse files
committed
improve: Enhance T14 Intel Gen 6 with common ThinkPad optimizations
- Add acpi_backlight=native for proper brightness control - Include touchpad fix for click registration issues - Disable throttled service for modern Intel power management - Mark additions with TODO comments seeking community feedback
1 parent bbb1f26 commit 3394443

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

lenovo/thinkpad/t14/intel/gen6/default.nix

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,17 @@
1717

1818
# Ensure modern kernel for full Lunar Lake support
1919
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.8") pkgs.linuxPackages_latest;
20+
21+
# TODO: Looking for feedback on these kernel parameters for T14 Gen 6
22+
# Force use of the thinkpad_acpi driver for backlight control
23+
# This allows the backlight save/load systemd service to work
24+
boot.kernelParams = [
25+
"acpi_backlight=native"
26+
# TODO: Looking for feedback - touchpad fix needed for proper click registration on some T14 models
27+
"psmouse.synaptics_intertouch=0"
28+
];
29+
30+
# TODO: Looking for feedback - modern Intel CPUs don't typically need throttled service
31+
# which can interfere with newer power management on Lunar Lake
32+
services.throttled.enable = lib.mkDefault false;
2033
}

0 commit comments

Comments
 (0)