mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
gpg-agent: use $TTY for zsh
This commit is contained in:
parent
a7117efb37
commit
b02843e229
1 changed files with 8 additions and 3 deletions
|
@ -13,11 +13,16 @@ let
|
|||
${gpgPkg}/bin/gpg-connect-agent updatestartuptty /bye > /dev/null
|
||||
'';
|
||||
|
||||
gpgInitStr = ''
|
||||
gpgBashInitStr = ''
|
||||
GPG_TTY="$(tty)"
|
||||
export GPG_TTY
|
||||
'' + optionalString cfg.enableSshSupport gpgSshSupportStr;
|
||||
|
||||
gpgZshInitStr = ''
|
||||
GPG_TTY="$TTY"
|
||||
export GPG_TTY
|
||||
'' + optionalString cfg.enableSshSupport gpgSshSupportStr;
|
||||
|
||||
gpgFishInitStr = ''
|
||||
set -gx GPG_TTY (tty)
|
||||
'' + optionalString cfg.enableSshSupport gpgSshSupportStr;
|
||||
|
@ -256,8 +261,8 @@ in {
|
|||
fi
|
||||
'';
|
||||
|
||||
programs.bash.initExtra = mkIf cfg.enableBashIntegration gpgInitStr;
|
||||
programs.zsh.initExtra = mkIf cfg.enableZshIntegration gpgInitStr;
|
||||
programs.bash.initExtra = mkIf cfg.enableBashIntegration gpgBashInitStr;
|
||||
programs.zsh.initExtra = mkIf cfg.enableZshIntegration gpgZshInitStr;
|
||||
programs.fish.interactiveShellInit =
|
||||
mkIf cfg.enableFishIntegration gpgFishInitStr;
|
||||
|
||||
|
|
Loading…
Reference in a new issue