summaryrefslogtreecommitdiffstats
path: root/lenovo/thinkpad/t430/default.nix
blob: bdad1be9878ae0f6786ae349d00d5afa35f3adad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, lib, pkgs, ... }:

{
  imports = [
    ../.
    ../../../common/cpu/intel
    ../../../common/pc/laptop/acpi_call.nix
  ];

  boot = {
    kernelParams = [
      # fixes brightness keys, see https://wiki.archlinux.org/index.php/Lenovo_ThinkPad_T430s
      "acpi_osi\='!Windows 2012'"
    ];
  };
}