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

16 lines
319 B
Nix
Raw Normal View History

2016-02-08 13:12:20 +01:00
{
imports = [
../.
../../../common/cpu/intel
];
2016-02-08 13:12:20 +01:00
boot = {
extraModprobeConfig = ''
2016-02-08 13:12:20 +01:00
options bbswitch use_acpi_to_detect_card_state=1
options thinkpad_acpi force_load=1 fan_control=1
2016-02-08 13:12:20 +01:00
'';
# TODO: probably enable tcsd? Is this line necessary?
kernelModules = [ "tpm-rng" ];
2016-02-08 13:12:20 +01:00
};
}