mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
16 lines
466 B
Nix
16 lines
466 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../.
|
|
../../../common/cpu/amd
|
|
../../../common/pc/laptop/acpi_call.nix
|
|
];
|
|
|
|
# Force use of the thinkpad_acpi driver for backlight control.
|
|
# This allows the backlight save/load systemd service to work.
|
|
boot.kernelParams = [ "acpi_backlight=native" ];
|
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/69289
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.2") pkgs.linuxPackages_latest;
|
|
}
|