about summary refs log tree commit diff
path: root/ops
diff options
context:
space:
mode:
Diffstat (limited to 'ops')
-rw-r--r--ops/modules/open_eid.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/ops/modules/open_eid.nix b/ops/modules/open_eid.nix
new file mode 100644
index 0000000000..112e5827f5
--- /dev/null
+++ b/ops/modules/open_eid.nix
@@ -0,0 +1,10 @@
+# NixOS module to configure the Estonian e-ID software.
+{ pkgs, ... }:
+
+{
+  services.pcscd.enable = true;
+
+  environment.systemPackages = with pkgs; [
+    qdigidoc
+  ];
+}