flocon/modules/nix/core/hardware/fprintd.nix

10 lines
131 B
Nix
Raw Normal View History

2025-01-14 11:34:01 +00:00
{
lib,
config,
...
}: {
config = lib.mkIf config.local.profiles.laptop.enable {
services.fprintd.enable = true;
};
}