Bruno BELANYI
0830f8e4bc
All checks were successful
continuous-integration/drone/push Build is passing
16 lines
251 B
Nix
16 lines
251 B
Nix
{ ... }:
|
|
{
|
|
programs.gpg = {
|
|
enable = true;
|
|
};
|
|
|
|
services.gpg-agent = {
|
|
enable = true;
|
|
enableSshSupport = true; # One agent to rule them all
|
|
pinentryFlavor = "tty";
|
|
extraConfig = ''
|
|
allow-loopback-pinentry
|
|
'';
|
|
};
|
|
}
|