nixos-hardware/lenovo/thinkpad/t440p.nix

13 lines
215 B
Nix
Raw Normal View History

2016-02-08 13:12:20 +01:00
{ config, pkgs, ... }:
{
imports = [ ./general.nix ];
2016-02-08 13:12:20 +01:00
boot = {
extraModprobeConfig = ''
options bbswitch use_acpi_to_detect_card_state=1
'';
kernelModules = [ "kvm-intel" "tpm-rng" ];
};
}