tvl-depot/ops/modules/open_eid.nix
Vincent Ambo 186c2822b0 feat(ops/modules): Add module for using Estonian e-residency card
Someone already packaged the required software, so I didn't have to do
that.

Change-Id: Ifc6a68fd4cd89f4718368a05acb6c6f536e01aab
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5431
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: tazjin <tazjin@tvl.su>
2022-04-09 08:49:06 +00:00

10 lines
171 B
Nix

# NixOS module to configure the Estonian e-ID software.
{ pkgs, ... }:
{
services.pcscd.enable = true;
environment.systemPackages = with pkgs; [
qdigidoc
];
}