mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-23 11:29:42 +01:00
thinkpad: introduce t430
Copied everything from t440p, added a fix for the brightness keys
This commit is contained in:
parent
7fbb7d50a6
commit
d5b0b9349f
1 changed files with 15 additions and 0 deletions
15
lenovo/thinkpad/t430/default.nix
Normal file
15
lenovo/thinkpad/t430/default.nix
Normal 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'"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue