nix/nixos/common/services/gnupg-agent.nix

8 lines
165 B
Nix

{pkgs, cfg, ... }: {
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
enableBrowserSocket = true;
pinentryFlavor = "emacs";
};
}