summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2018-11-11 18:23:46 +0100
committermakefu <github@syntax-fehler.de>2018-11-11 18:23:46 +0100
commitf57449df79ce2d0b54cbce0931bb092a2af055fe (patch)
tree2cdcaffe1c0b2513cf51dd0acab763f5187d484a
parent6a343f2247b3c96697b13df445f16f013cbddac7 (diff)
ma hw/smartcard: disable ifdnfc for now
until package becomes part of stable channel
-rw-r--r--2configs/hw/smartcard.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/2configs/hw/smartcard.nix b/2configs/hw/smartcard.nix
index 1e9bca53b..b66b70098 100644
--- a/2configs/hw/smartcard.nix
+++ b/2configs/hw/smartcard.nix
@@ -2,12 +2,15 @@
{
services.pcscd = {
enable = true;
- plugins = with pkgs; [ ifdnfc ccid ];
+ plugins = with pkgs;
+ [ #ifdnfc
+ ccid
+ ];
};
environment.systemPackages = with pkgs; [
# need to run ifdnfc-activate before usage
- ifdnfc
+ # ifdnfc
# pcsc_scan
pcsctools
];