nix/host/x86_64-linux/work/Fprint.nix

13 lines
208 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
2024-10-14 04:51:19 +03:00
environment.systemPackages = with pkgs; [ fprintd ];
services.fprintd = {
enable = true;
tod = {
enable = true;
driver = pkgs.libfprint-2-tod1-vfs0090;
};
};
}