stockholm/makefu/2configs/hw/smartcard.nix
makefu 424e6d50af
ma hw/smartcard: disable ifdnfc for now
until package becomes part of stable channel
2018-11-11 18:23:46 +01:00

22 lines
337 B
Nix

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