thinkpad: introduce t430

Copied everything from t440p, added a fix for the brightness keys
This commit is contained in:
Justin Humm 2018-08-31 20:16:13 +02:00
parent 7fbb7d50a6
commit d5b0b9349f
No known key found for this signature in database
GPG Key ID: 5F24E3BD56617EB2
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,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'"
];
};
}