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