12 lines
171 B
Nix
12 lines
171 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
services.gpg-agent = {
|
|
enable = true;
|
|
enableSshSupport = true;
|
|
#TODO: determine if extraConfig is necessary for emacs.
|
|
};
|
|
}
|