2018-08-17 11:15:33 +00:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
services.pcscd = {
|
|
|
|
enable = true;
|
2018-11-11 17:23:46 +00:00
|
|
|
plugins = with pkgs;
|
|
|
|
[ #ifdnfc
|
|
|
|
ccid
|
|
|
|
];
|
2018-08-17 11:15:33 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
# need to run ifdnfc-activate before usage
|
2018-11-11 17:23:46 +00:00
|
|
|
# ifdnfc
|
2018-08-17 11:15:33 +00:00
|
|
|
# pcsc_scan
|
|
|
|
pcsctools
|
|
|
|
];
|
|
|
|
boot.blacklistedKernelModules = [
|
|
|
|
"pn533" "pn533_usb"
|
|
|
|
"nfc"
|
|
|
|
];
|
|
|
|
}
|