summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/hw/smartcard.nix
blob: b66b70098ed42bc88d20238e2ef0d6a7b80ec480 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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"
  ];
}