lenovo/t440p.nix: init

This commit is contained in:
Nikolay Amiantov 2016-02-08 15:12:20 +03:00
parent 4bd6934a05
commit ad5412b9f2
1 changed files with 10 additions and 0 deletions

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