1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 02:53:34 +02:00

Merge pull request #2 from abbradar/patch-2

lenovo/t440p: init
This commit is contained in:
Emery Hemingway 2016-02-08 15:26:12 +01:00
commit 382032137c

10
lenovo/t440p.nix Normal file
View File

@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
boot = {
extraModprobeConfig = ''
options bbswitch use_acpi_to_detect_card_state=1
'';
kernelModules = [ "kvm-intel" "tpm-rng" ];
};
}