10 lines
145 B
Nix
10 lines
145 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = false;
|
|
pinentryPackage = pkgs.pinentry-gnome3;
|
|
};
|
|
}
|