b9a7e21ef6
It is going to be merged into nixpkgs, under `nixos/hardware`. This will give better discoverability, and considering the low turnover (less than 100 commits in the last year and only 350 total) it won’t make any dent on the size of nixpkgs. We have a monorepo, let’s use it.
11 lines
345 B
Nix
11 lines
345 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
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;
|
|
}
|