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