From d5b0b9349f46eb386f292feca3395dfecf5b3e2f Mon Sep 17 00:00:00 2001 From: Justin Humm Date: Fri, 31 Aug 2018 20:16:13 +0200 Subject: [PATCH 1/2] thinkpad: introduce t430 Copied everything from t440p, added a fix for the brightness keys --- lenovo/thinkpad/t430/default.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lenovo/thinkpad/t430/default.nix diff --git a/lenovo/thinkpad/t430/default.nix b/lenovo/thinkpad/t430/default.nix new file mode 100644 index 0000000..09cee74 --- /dev/null +++ b/lenovo/thinkpad/t430/default.nix @@ -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'" + ]; + }; +} From 142530bb885eb5ae32215a0ddb5ba05b69b2beff Mon Sep 17 00:00:00 2001 From: Justin Humm Date: Sat, 1 Sep 2018 00:30:55 +0200 Subject: [PATCH 2/2] README: add Lenovo Thinkpad T430 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f8f2f91..53d6463 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ imports = [ | [Inverse Path USB armory][] | `` | | Lenovo IdeaPad Z510 | `` | | Lenovo ThinkPad T410 | `` | +| Lenovo ThinkPad T430 | `` | | Lenovo ThinkPad T440p | `` | | Lenovo ThinkPad T460s | `` | | Lenovo ThinkPad X140e | `` |