summaryrefslogtreecommitdiffstats
path: root/lenovo/t440p.nix
blob: 47f5f66387bd4c2b4aeaa280f09346ba19e00086 (plain)
1
2
3
4
5
6
7
8
9
10
{ config, pkgs, ... }:

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