1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-28 17:17:22 +02:00
nixos-hardware/lenovo/t440p.nix
2016-02-08 15:12:20 +03:00

10 lines
183 B
Nix

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