mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-05 10:39:42 +01:00
15 lines
297 B
Nix
15 lines
297 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
../.
|
||
|
../../../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"
|
||
|
];
|
||
|
}
|