1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-01 02:23:33 +02:00
nixos-hardware/lenovo/thinkpad/l14/default.nix

16 lines
331 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
imports = [
../.
2021-08-25 23:27:53 +02:00
../../../common/pc/laptop/ssd
../../../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"
];
}