dot.nix/hosts/common/core/gnupg.nix

9 lines
156 B
Nix

{ pkgs, ... }:
{
# GnuPG
programs.gnupg.agent = {
enable = true;
pinentryPackage = pkgs.pinentry-gnome3;
};
services.pcscd.enable = true;
}