13 lines
237 B
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
|
|
];
|
|
}
|