mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
11 lines
339 B
Nix
11 lines
339 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
imports = [ ../../common/pc/laptop ];
|
|
|
|
hardware.trackpoint.enable = lib.mkDefault true;
|
|
hardware.trackpoint.emulateWheel = lib.mkDefault config.hardware.trackpoint.enable;
|
|
|
|
# Fingerprint reader: login and unlock with fingerprint (if you add one with `fprintd-enroll`)
|
|
# services.fprintd.enable = true;
|
|
}
|