nix/host/x86_64-linux/work/Fprint.nix
2024-11-06 01:07:30 +03:00

17 lines
198 B
Nix

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