Merge pull request #76 from erictapen/t430-init

thinkpad: introduce t430
This commit is contained in:
Jörg Thalheim 2018-09-04 20:16:15 +01:00 committed by GitHub
commit b7185cd232
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 0 deletions

View File

@ -34,6 +34,7 @@ imports = [
| [Inverse Path USB armory][] | `<nixos-hardware/inversepath/usbarmory>` |
| Lenovo IdeaPad Z510 | `<nixos-hardware/lenovo/ideapad/z510>` |
| Lenovo ThinkPad T410 | `<nixos-hardware/lenovo/thinkpad/t410>` |
| Lenovo ThinkPad T430 | `<nixos-hardware/lenovo/thinkpad/t430>` |
| Lenovo ThinkPad T440p | `<nixos-hardware/lenovo/thinkpad/t440p>` |
| Lenovo ThinkPad T460s | `<nixos-hardware/lenovo/thinkpad/t460s>` |
| Lenovo ThinkPad X140e | `<nixos-hardware/lenovo/thinkpad/x140e>` |

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'"
];
};
}