1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-30 16:38:32 +02:00
nixos-hardware/lenovo/thinkpad/t440p/default.nix
2017-12-24 01:20:36 +00:00

15 lines
261 B
Nix

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