On 2022-07-17 00:44, Zacchaeus Scheffer wrote:
Toggle quote (47 lines)
> On Mon, Jul 4, 2022 at 1:50 AM Andrew Tropin <andrew@trop.in> wrote:
>
>> On 2022-02-15 13:46, Zacchaeus Scheffer wrote:
>> > There seems to be some problem installing password-store + pinentry
>> > entirely via guix home. When I have both installed as such, I get the
>> > following outputs:
>> >
>> > $ pinentry
>> > OK Pleased to meet you
>> > <C-c>
>> > $ gpg --import ...
>> > [prompts normally with pinentry, allows me to import]
>> > $ pass
>> > [my password entries]
>> > $ pass [entry name]
>> > gpg: decryption failed: No secret key
>> > $ guix package -i pinentry
>> > $ pass [entry name]
>> > [prompts with pinentry and works normally]
>> >
>> > So pinentry and pass seem to both be available, but don't work together
>> > unless I install pinentry via guix package.
>>
>> I suspect that the problem is that someone at some moment of time
>> doesn't have ~/.guix-home/profile/bin in its $PATH and thus it can't
>> find a pinentry. Can you show `which gpg`, `which pass`, `which
>> pinentry`?
>>
> Before running "guix package -i pinentry"
> $ which -a pinentry
> /home/zacchae/.guix-home/profile/bin/pinentry
> $ which -a gpg
> /home/zacchae/.guix-home/profile/bin/gpg
> $ which -a pass
> /home/zacchae/.guix-home/profile/bin/pass
> After runing "guix package -i pinentry"
> $ which -a pinentry
> /home/zacchae/.guix-home/profile/bin/pinentry
> /home/zacchae/.guix-profile/bin/pinentry
> $ which -a gpg
> /home/zacchae/.guix-home/profile/bin/gpg
> $ which -a pass
> /home/zacchae/.guix-home/profile/bin/pass
>
> I can easily reproduce the behavior by removing or installing pinentry with
> guix package. Paths behave as expected.
Probably there are some hardcoded PATHs for .guix-profile, but not for
.guix-home/profile. One of such examples, which can be unrelated to the
current issue:
It will require investigation to find all the places, where and at what
time PATH (and maybe some other env vars) is/are set for all the
participants of the party to trace the root of the problem and properly
solve it =) Anyway, there is a workaround, which should help:
Toggle quote (10 lines)
>
> The gnupg home service from rde project goes a slightly other way and
>> just sets pinentry-program to absolute path in the store. Such approach
>> works with pass well, you can take a look at it for inspiration:
>>
>> https://git.sr.ht/~abcdw/rde/tree/master/item/gnu/home-services/gnupg.scm#L127
>>
> I don't totally follow what's going on here, but maybe it will make more
> sense later.
Basically it adds the following content to gpg-agent.conf:
Toggle snippet (4 lines)
enable-ssh-support
pinentry-program /gnu/store/r5j2gmfv8akp8p746l6jqy5qwpz0zkhm-pinentry-qt-1.2.0/bin/pinentry-qt
You can try to set pinentry-program to
/home/zacchae/.guix-home/profile/bin/pinentry
Or better directly use gnupg home service.
--
Best regards,
Andrew Tropin
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEKEGaxlA4dEDH6S/6IgjSCVjB3rAFAmLVBY8ACgkQIgjSCVjB
3rC5tg//eHdxf8mM301JLMIhXyfWoJZuV6Ry5gI6DU80wOUpiYYc6yD2VbupY0Sd
Wo7O0maOlSuIUsYs8d2/usyOSPwcq7vHmRN3FU3j08Nt57k+ls3QxOA+M71rSQC7
98t+x3gTleBr4QVxbOSWI2w5GjyF0QDkJlXcvlD2y78+/hlDtqj/1cdJKhjhuq76
zYtobN7k7auQ3NXKie1oTPNHZ5k5LbHWrWMxCT7RaMHVukKjAwQiR8E7SR50mu4e
cy4pyGidrGR+vDrGxWnKRX8d0hHb2hhvWJsx2nPCRkOOgV8eigG1jfu7ZDyyiKCm
aO+JBhkwJDMU6ktjYnS2UD+AGf/YCitPZ/+23qMfLJ+6I8kmy6jBLQlwrTY2gnZu
wnio3x4TXK0QCSD9SQ7DR03RBK+wxRnP7K4P2N01YXUYGtFdbGe8jWKg2tQMDKN7
hYPXODAXJ6XvBSLz4rvQAFZkCIfUVbuD3oeBYT3Qu/j4vKxUky8VxowMeNQuKjtX
daGewTGWSeGezJyqw+8iZZgu8sybe68IbW5niz0ccTBO112h/13p9rGFqqL2NF4R
gk0JEqHzRVZv8WEf18DJHFMfQ47ZXbcpYYZp6z0xuJEzvLKO16ukWPJaxlYy4F0v
JnpJ/6uHbcl+JJqsFsJvDpGSXlIFAuIQwULk+34K2cu/h3QOSVY=
=Tzm5
-----END PGP SIGNATURE-----