add pinentry

This commit is contained in:
Daniel Langbein 2023-09-11 13:17:49 +02:00
parent 705d040040
commit bf21988cc8
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002

View File

@ -17,13 +17,11 @@
# Otherwise there might be a gpg error about "no pinentry".
# https://discourse.nixos.org/t/cant-get-gnupg-to-work-no-pinentry/15373/19
# But how to restart it? Maybe this?
# killall gpg-agent
# systemctl --user restart gpg-agent
# Not sure if this is needed: Reload udev rules.
# sudo -- udevadm control --reload-rules && udevadm trigger
#
# Not sure if this is needed:
# killall gpg-agent
# TODO: gpg-agent pinentry problem
# https://github.com/NixOS/nixpkgs/issues/97861
@ -88,10 +86,14 @@
# pinentry-gnome
# ];
# };
# environment.systemPackages = with pkgs; [
# #pinentry-curses
# pinentry-gnome
# ];
# Adds the pinentry binary to the PATH so that e.g.
# echo GETPIN | pinentry
# works.
environment.systemPackages = with pkgs; [
#pinentry-curses
pinentry-gnome
];
# Smartcard daemon.
services.pcscd.enable = true;