2022-12-31 10:52:38 +00:00
|
|
|
{ lib, pkgs, ... }:
|
2020-02-11 18:42:02 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../.
|
|
|
|
../../../common/cpu/amd
|
|
|
|
];
|
|
|
|
|
2020-02-12 09:52:49 +00:00
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/69289
|
2020-02-12 10:57:21 +00:00
|
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.2") pkgs.linuxPackages_latest;
|
2021-08-18 09:58:49 +00:00
|
|
|
|
|
|
|
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"
|
|
|
|
];
|
2020-02-11 18:42:02 +00:00
|
|
|
}
|