nixos-hardware/lenovo/thinkpad/e14/default.nix

16 lines
312 B
Nix
Raw Normal View History

2022-12-31 11:52:38 +01:00
{ ... }:
2021-08-18 12:43:51 +02:00
{
imports = [
../.
2021-09-01 09:34:21 +02:00
../../../common/pc/laptop/ssd
2021-08-18 12:43:51 +02:00
../../../common/pc/laptop/acpi_call.nix
];
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"
];
}