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

17 lines
198 B
Nix
Raw Normal View History

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