nixos-hardware/lenovo/thinkpad/t440p/default.nix

13 lines
202 B
Nix

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