diff --git a/modules/nitrokey-ssh-gpg.nix b/modules/nitrokey-ssh-gpg.nix index aa98dae..1d078cc 100644 --- a/modules/nitrokey-ssh-gpg.nix +++ b/modules/nitrokey-ssh-gpg.nix @@ -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;