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

13 lines
237 B
Nix

{pkgs, cfg, ... }: {
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
enableBrowserSocket = true;
pinentryFlavor = "emacs";
};
environment.systemPackages = with pkgs; [
gpg-tui
gnupg
];
}