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

14 lines
237 B
Nix
Raw Normal View History

2023-08-27 13:51:24 +02:00
{pkgs, cfg, ... }: {
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
enableBrowserSocket = true;
pinentryFlavor = "emacs";
2023-08-27 13:51:24 +02:00
};
environment.systemPackages = with pkgs; [
gpg-tui
gnupg
];
}