1# crypto stands for cryptography, not cryptocurrency
2{ pkgs, ... }:
3{
4 environment.systemPackages = with pkgs; [
5 gnupg
6 pinentry
7 opensc
8
9 rage
10 age-plugin-yubikey
11 ];
12
13 programs.gnupg.agent.enable = true;
14 # ideally this should be set automatically but in case that doesn't work
15 #programs.gnupg.agent.pinentryFlavor = "curses"; # we don't have a gui.
16
17 services.pcscd.enable = true;
18}