Files
nixos-hardware/lenovo/thinkpad/e15/default.nix
2025-03-12 15:18:11 +00:00

16 lines
298 B
Nix

{ ... }:
{
imports = [
../.
../../../common/pc/laptop
../../../common/pc/laptop/ssd
];
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"
];
}