Add ssh-agent configuration

gpg-agent wasn't working when trying to set up an ssh-agent, so use regular
ssh-agent instead.
This commit is contained in:
Tom Willemse 2024-04-07 00:18:21 -07:00
parent 5225562fe0
commit 65c5ef5c7f

View file

@ -11,6 +11,8 @@
#:use-module ((gnu home services gnupg)
#:select (home-gpg-agent-service-type
home-gpg-agent-configuration))
#:use-module ((gnu home services ssh)
#:select (home-ssh-agent-service-type))
#:use-module ((gnu packages certs)
#:select (nss-certs))
#:use-module ((gnu packages cdrom)
@ -528,6 +530,7 @@
(service home-gpg-agent-service-type
(home-gpg-agent-configuration
(ssh-support? #t)
(ssh-support? #f)
(extra-content
"allow-emacs-pinentry\n"))))))
"allow-emacs-pinentry\n")))
(service home-ssh-agent-service-type))))