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

16 lines
249 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2016-02-08 07:12:20 -05:00
{
imports = [
../.
../../../common/cpu/intel
];
2016-02-08 07:12:20 -05:00
boot = {
extraModprobeConfig = lib.mkDefault ''
2016-02-08 07:12:20 -05:00
options bbswitch use_acpi_to_detect_card_state=1
'';
kernelModules = [ "tpm-rng" ];
2016-02-08 07:12:20 -05:00
};
}