mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
15 lines
306 B
Nix
15 lines
306 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.gpg-agent = {
|
|
enable = true;
|
|
enableSshSupport = true;
|
|
enableExtraSocket = true;
|
|
pinentryPackage = pkgs.pinentry.gtk2;
|
|
defaultCacheTtl = 600;
|
|
maxCacheTtl = 7200;
|
|
extraConfig = ''
|
|
allow-loopback-pinentry
|
|
allow-emacs-pinentry
|
|
'';
|
|
};
|
|
}
|