mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-14 12:17:21 +00:00
19 lines
288 B
Nix
19 lines
288 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
services = {
|
|
ssh-agent.enable = true;
|
|
|
|
gpg-agent = {
|
|
enable = true;
|
|
enableSshSupport = true;
|
|
enableZshIntegration = true;
|
|
defaultCacheTtl = 30;
|
|
maxCacheTtl = 600;
|
|
pinentryFlavor = "curses";
|
|
};
|
|
};
|
|
}
|