Merge pull request #303 from ebbertd/backlight_e495

lenovo/thinkpad/e495: use native acpi backlight
This commit is contained in:
Jörg Thalheim 2021-08-18 11:44:47 +01:00 committed by GitHub
commit 3c83cab719
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -8,4 +8,10 @@
# see https://github.com/NixOS/nixpkgs/issues/69289
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.2") pkgs.linuxPackages_latest;
boot.kernelParams = [
# Force use of the thinkpad_acpi driver for backlight control.
# This allows the backlight save/load systemd service to work.
"acpi_backlight=native"
];
}