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

{
  imports = [ ./general.nix ];

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