mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
gpg-agent: do updatestartuptty only when SSH is enabled
Inspired by #163.
This commit is contained in:
parent
8fc8e158e2
commit
bc50202d0d
1 changed files with 3 additions and 2 deletions
|
@ -9,8 +9,9 @@ let
|
||||||
gpgInitStr = ''
|
gpgInitStr = ''
|
||||||
GPG_TTY="$(tty)"
|
GPG_TTY="$(tty)"
|
||||||
export GPG_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
|
in
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue