2022-12-31 11:52:38 +01:00
|
|
|
{ lib, pkgs, ... }:
|
2020-03-11 08:09:55 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../.
|
|
|
|
../../../common/cpu/amd
|
2020-03-15 04:55:05 +01:00
|
|
|
../../../common/pc/laptop/acpi_call.nix
|
2020-03-11 08:09:55 +01:00
|
|
|
];
|
|
|
|
|
2020-03-15 04:55:05 +01:00
|
|
|
# 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" ];
|
|
|
|
|
2020-03-11 08:09:55 +01:00
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/69289
|
|
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.2") pkgs.linuxPackages_latest;
|
|
|
|
}
|