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
2017-12-25 22:07:47 +00:00

17 lines
307 B
Nix

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