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

{
  imports = [
    ../.
    ../../../common/cpu/intel
  ];

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