11 lines
229 B
Nix
11 lines
229 B
Nix
{pkgs, ...}: {
|
|
services = {
|
|
gpg-agent = {
|
|
enable = true;
|
|
defaultCacheTtl = 3600;
|
|
pinentryPackage = pkgs.pinentry-curses;
|
|
enableSshSupport = true;
|
|
enableNushellIntegration = true;
|
|
};
|
|
};
|
|
}
|