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:
parent
5225562fe0
commit
65c5ef5c7f
1 changed files with 5 additions and 2 deletions
|
@ -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))))
|
||||
|
|
Loading…
Reference in a new issue