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

15 lines
265 B
Nix
Raw Normal View History

2023-08-27 13:51:24 +02:00
{pkgs, cfg, ... }: {
programs.gnupg.agent = {
2023-08-31 06:54:23 +02:00
enable = true;
2023-08-27 13:51:24 +02:00
enableSSHSupport = true;
enableBrowserSocket = true;
2023-08-31 06:11:44 +02:00
enableExtraSocket = true;
pinentryFlavor = "tty";
2023-08-27 13:51:24 +02:00
};
environment.systemPackages = with pkgs; [
gpg-tui
gnupg
];
}