1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-01 02:23:33 +02:00
nixos-hardware/lenovo/thinkpad/t440p/default.nix
2023-01-24 08:54:28 +00:00

18 lines
334 B
Nix

{ lib, ... }:
{
imports = [
../.
../../../common/cpu/intel
];
boot = {
extraModprobeConfig = ''
options bbswitch use_acpi_to_detect_card_state=1
options thinkpad_acpi force_load=1 fan_control=1
'';
# TODO: probably enable tcsd? Is this line necessary?
kernelModules = [ "tpm-rng" ];
};
}