2023-09-05 17:44:23 +01:00
|
|
|
{ ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [ ./default.nix ];
|
|
|
|
services = {
|
|
|
|
gpg-agent = {
|
|
|
|
enable = true;
|
|
|
|
defaultCacheTtl = 7200;
|
|
|
|
defaultCacheTtlSsh = 7200;
|
2023-09-07 14:34:24 +01:00
|
|
|
pinentryFlavor = "gtk2";
|
2023-09-05 17:44:23 +01:00
|
|
|
extraConfig = ''
|
|
|
|
no-allow-external-cache
|
|
|
|
allow-emacs-pinentry
|
|
|
|
allow-loopback-pinentry
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
password-store-sync.enable = true;
|
|
|
|
};
|
|
|
|
}
|