gpg-agent: do updatestartuptty only when SSH is enabled

Inspired by #163.

(cherry picked from commit bc50202d0d)
This commit is contained in:
Robert Helgesson 2018-03-04 22:18:17 +01:00
parent 337168f47e
commit 967d0f93a2
No known key found for this signature in database
GPG key ID: C3DB11069E65DC86

View file

@ -9,8 +9,9 @@ let
gpgInitStr = ''
GPG_TTY="$(tty)"
export GPG_TTY
${pkgs.gnupg}/bin/gpg-connect-agent updatestartuptty /bye > /dev/null
'';
''
+ optionalString cfg.enableSshSupport
"${pkgs.gnupg}/bin/gpg-connect-agent updatestartuptty /bye > /dev/null";
in