nixos-config/services/pcscd.nix

11 lines
170 B
Nix
Raw Permalink Normal View History

2020-11-07 11:58:17 +01:00
{ config, pkgs, ... }:
{
# for reader used with AusweisApp2
services.pcscd.enable = true;
2024-05-26 16:45:38 +02:00
services.pcscd.plugins = with pkgs; [
ccid
pcsc-cyberjack
];
2020-11-07 11:58:17 +01:00
}