1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-28 23:48:33 +02:00
nixos-hardware/lenovo/t440p.nix
2016-02-08 15:12:20 +03:00

11 lines
183 B
Nix

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