Merge pull request #189711 from SuperSandro2000/gnupg-remote-quiet

nixos/gnupg: void error messages when using nix remote builders

authored by Michele Guerini Rocco and committed by GitHub 68065dc5 2e7e6e6e

+1 -1
+1 -1
nixos/modules/programs/gnupg.nix
··· 135 # The SSH agent protocol doesn't have support for changing TTYs; however we 136 # can simulate this with the `exec` feature of openssh (see ssh_config(5)) 137 # that hooks a command to the shell currently running the ssh program. 138 - Match host * exec "${cfg.package}/bin/gpg-connect-agent --quiet updatestartuptty /bye > /dev/null" 139 ''; 140 141 environment.extraInit = mkIf cfg.agent.enableSSHSupport ''
··· 135 # The SSH agent protocol doesn't have support for changing TTYs; however we 136 # can simulate this with the `exec` feature of openssh (see ssh_config(5)) 137 # that hooks a command to the shell currently running the ssh program. 138 + Match host * exec "${cfg.package}/bin/gpg-connect-agent --quiet updatestartuptty /bye >/dev/null 2>&1" 139 ''; 140 141 environment.extraInit = mkIf cfg.agent.enableSSHSupport ''