8 lines
165 B
Nix
8 lines
165 B
Nix
{pkgs, cfg, ... }: {
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
enableBrowserSocket = true;
|
|
pinentryFlavor = "emacs";
|
|
};
|
|
}
|