nix/nixos/common/services/gnupg-agent.nix
2023-08-27 20:51:24 +09:00

8 lines
No EOL
164 B
Nix

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