1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-01 00:48:31 +02:00
nixos-hardware/lenovo/thinkpad/default.nix

13 lines
303 B
Nix
Raw Normal View History

2017-12-22 03:56:28 +01:00
{ lib, pkgs, ... }:
{
boot = {
kernelModules = [ "tp_smapi" ];
extraModulePackages = with config.boot.kernelPackages; [ tp_smapi ];
};
hardware.trackpoint.enable = lib.mkDefault true;
services.tlp.enable = lib.mkDefault true;
services.xserver.libinput.enable = lib.mkDefault true;
}