stockholm/makefu/2configs/hw/smartcard.nix

22 lines
337 B
Nix
Raw Normal View History

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