9 lines
172 B
Nix
9 lines
172 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
enableZshIntegration = true;
|
|
pinentryPackage = pkgs.pinentry-qt;
|
|
};
|
|
}
|