14 lines
209 B
Nix
14 lines
209 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
pinentryPackage = pkgs.pinentry-gnome3;
|
|
enableSSHSupport = true;
|
|
settings = {
|
|
# disable-scdaemon = "";
|
|
};
|
|
};
|
|
|
|
}
|