Segregate lenovo/ subdir into thinkpad and ideapad directories

There are several significant differences between ThinkPads and the
other Lenovo models, so this structure must be more precise
This commit is contained in:
Maximilian Bosch
2017-09-03 23:34:57 +02:00
parent ed46b99315
commit d977cf26de
8 changed files with 0 additions and 0 deletions

12
lenovo/thinkpad/t440p.nix Normal file
View File

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