This repository has been archived on 2024-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
linux/.config/linux/system/host/work/Fprint.nix

10 lines
213 B
Nix

{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
fprintd
];
services.fprintd.enable = true;
services.fprintd.tod.enable = true;
services.fprintd.tod.driver = pkgs.libfprint-2-tod1-vfs0090;
}