nix-config/home/gpg.nix

15 lines
223 B
Nix
Raw Normal View History

{ ... }:
{
programs.gpg = {
enable = true;
};
services.gpg-agent = {
enable = true;
enableSshSupport = true; # One agent to rule them all
extraConfig = ''
allow-loopback-pinentry
'';
};
}