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

{
  imports = [ ./general-intel.nix ];

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