summaryrefslogtreecommitdiffstats
path: root/lenovo
diff options
context:
space:
mode:
authorJustin Humm <justin.humm@posteo.de>2018-08-31 20:16:13 +0200
committerJustin Humm <justin.humm@posteo.de>2018-09-04 20:42:09 +0200
commitd5b0b9349f46eb386f292feca3395dfecf5b3e2f (patch)
tree8d69a7d0f051ee31fcd18ea2a4375d3efe756bf5 /lenovo
parent7fbb7d50a6a111a180c4e6c2cc9b51079add9af5 (diff)
thinkpad: introduce t430
Copied everything from t440p, added a fix for the brightness keys
Diffstat (limited to 'lenovo')
-rw-r--r--lenovo/thinkpad/t430/default.nix15
1 files changed, 15 insertions, 0 deletions
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'"
+ ];
+ };
+}