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

16 lines
312 B
Nix
Raw Normal View History

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