summaryrefslogtreecommitdiffstats
path: root/lenovo/thinkpad/t495/default.nix
blob: 64957e6e06c7a4e7e65c07c4352777572f122e6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, 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;
}