help-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Guix Home: SSH won't ask for GPG password


From: Caleb Herbert
Subject: Re: Guix Home: SSH won't ask for GPG password
Date: Fri, 06 Oct 2023 18:35:17 -0700 (PDT)

Maxim Cournoyer <maxim.cournoyer@gmail.com> wrote ..
> What do you mean by "still" ?  It must have worked at some point?  What
> changed in your configuration?

I don't know when it last worked. I think it stopped working when I added a 
package.

Here is my full config:

;; This "home-environment" file can be passed to 'guix home reconfigure'
;; to reproduce the content of your profile.  This is "symbolic": it only
;; specifies package names.  To reproduce the exact same profile, you also
;; need to capture the channels being used, as returned by "guix describe".
;; See the "Replicating Guix" section in the manual.

(use-modules (gnu home)
             (gnu packages)
             (gnu packages gnupg)
             (gnu services)
             (guix gexp)
             (gnu home services shells)
             (gnu home services gnupg))

(home-environment
  ;; Below is the list of packages that will show up in your
  ;; Home profile, under ~/.guix-home/profile.
 (packages (specifications->packages (list "emacs"
                                           "password-store"
                                           "pinentry"
                                           "gnupg"
                                           "evolution"
                                           "icecat"
                                           "git"
                                           "mosh"
                                           "wgetpaste"
                                           "evolution-data-server"
                                           "dino")))

  ;; Below is the list of Home services.  To search for available
  ;; services, run 'guix home search KEYWORD' in a terminal.
  (services
   (list (service home-bash-service-type
                  (home-bash-configuration
                   (aliases '(("grep" . "grep --color=auto") ("ll" . "ls -l")
                              ("ls" . "ls -p --color=auto")))
                   (bashrc (list (local-file ".bashrc" "bashrc")))
                   (bash-profile (list (local-file ".bash_profile"
                                                   "bash_profile")))))
         (service home-gpg-agent-service-type
                  (home-gpg-agent-configuration
                   (pinentry-program
                    (file-append pinentry "/bin/pinentry"))
                   (ssh-support? #t))))))


caleb@bender ~$ guix describe
Generation 1    Oct 04 2023 20:25:40    (current)
  guix 20df2ee
    repository URL: https://git.savannah.gnu.org/git/guix.git
    branch: master
    commit: 20df2ee697bb5057a476a926a363d71cc8944c84
caleb@bender ~$ 

-- 
Caleb
https://bluehome.net/csh/


reply via email to

[Prev in Thread] Current Thread [Next in Thread]