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