I have been trying to get it to work for a while but for some reason, it
just doesn't start up for me. Here is my guix-home-config.scm,
--8<---------------cut here---------------start------------->8---
;; This is a sample Guix Home configuration which can help setup your
;; home directory in the same declarative manner as Guix System.
;; For more information, see the Home Configuration section of the manual.
(define-module (guix-home-config)
#:use-module (guix gexp)
#:use-module (gnu packages gnupg)
#:use-module (gnu home)
#:use-module (gnu home services)
#:use-module (gnu home services shells)
#:use-module (gnu services)
#:use-module (gnu system shadow)
#:use-module (gnu home services ssh)
#:use-module (gnu home services syncthing)
#:use-module (gnu home services gnupg)
#:use-module (gnu home services sound)
#:use-module (gnu home services desktop))
(define home-config
(home-environment
(services
(append
(list
(service home-bash-service-type)
(service home-ssh-agent-service-type)
(service home-gpg-agent-service-type
(home-gpg-agent-configuration
(pinentry-program
(file-append pinentry-emacs "/bin/pinentry-emacs"))))
(service home-syncthing-service-type)
(simple-service 'dark-theme
home-environment-variables-service-type
`(("GTK_THEME" . "Adwaita:dark")))
(simple-service 'dark-theme
home-environment-variables-service-type
`(("GDK_DPI_SCALE" . "1.5")))
(service home-dbus-service-type)
(service home-pipewire-service-type)
(service home-files-service-type
`((".guile" ,%default-dotguile)
(".Xdefaults" ,%default-xdefaults)))
(service home-xdg-configuration-files-service-type
`(("gdb/gdbinit" ,%default-gdbinit)
("nano/nanorc" ,%default-nanorc))))
%base-home-services))))
home-config
--8<---------------cut here---------------end--------------->8---
the output of herd status gpg-agent is,
herd: error: service 'gpg-agent' could not be found
I guix pulled yesterday. But the problem has been haunting ever since I
started using Guix.
Please tell me if more information is needed.
--
tusharhero