summaryrefslogtreecommitdiffstats
path: root/lenovo/thinkpad/t440p/default.nix
blob: 464c874dc60bb1f59cfec661cb628c977fcd4cf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, lib, pkgs, ... }:

{
  imports = [
    ../.
    ../../../common/cpu/intel
  ];

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