mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
Merge pull request #207887 from MrcJkb/fix-gpg-module-for-nushell
nixos/gnupg: (fix) use runtimeShell to call updatestartuptty
This commit is contained in:
commit
4b87e3b61d
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ in
|
||||||
# The SSH agent protocol doesn't have support for changing TTYs; however we
|
# The SSH agent protocol doesn't have support for changing TTYs; however we
|
||||||
# can simulate this with the `exec` feature of openssh (see ssh_config(5))
|
# can simulate this with the `exec` feature of openssh (see ssh_config(5))
|
||||||
# that hooks a command to the shell currently running the ssh program.
|
# that hooks a command to the shell currently running the ssh program.
|
||||||
Match host * exec "${cfg.package}/bin/gpg-connect-agent --quiet updatestartuptty /bye >/dev/null 2>&1"
|
Match host * exec "${pkgs.runtimeShell} -c '${cfg.package}/bin/gpg-connect-agent --quiet updatestartuptty /bye >/dev/null 2>&1'"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
environment.extraInit = mkIf cfg.agent.enableSSHSupport ''
|
environment.extraInit = mkIf cfg.agent.enableSSHSupport ''
|
||||||
|
|
Loading…
Reference in a new issue