10 lines
187 B
Nix
10 lines
187 B
Nix
{ ... }:
|
|
{
|
|
# Start the driver at boot
|
|
systemd.services.fprintd = {
|
|
wantedBy = [ "multi-user.target" ];
|
|
serviceConfig.Type = "simple";
|
|
};
|
|
services.fprintd.enable = true;
|
|
}
|