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

16 lines
445 B
Nix
Raw Normal View History

2017-12-24 12:10:07 +01:00
{ config, 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;
# Fingerprint reader: login and unlock with fingerprint (if you add one with `fprintd-enroll`)
# services.fprintd.enable = true;
}