summary refs log tree commit diff
path: root/modules/software-templates/eid-mw.nix
blob: b74d06049a65bb281c1e9ee0bae83f6f268598c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ pkgs, ... }: {
  services.pcscd.enable = true;
  environment.systemPackages = with pkgs; [
    p11-kit
    opensc
    eid-mw
  ];
  environment.etc."pkcs11/modules/opensc-pkcs11".text = ''
    module: ${pkgs.opensc}/lib/opensc-pkcs11.so
  '';
}