From 7ee10bd47004f7d35e8e790424d1d593c34da842 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Tue, 18 Jun 2024 19:38:08 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20(home/ssh)=20remove=20gcloud=20v?= =?UTF-8?q?erbosity=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/shell/ssh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/shell/ssh.nix b/home/shell/ssh.nix index 57993d8..554c2bf 100644 --- a/home/shell/ssh.nix +++ b/home/shell/ssh.nix @@ -9,7 +9,7 @@ zone, forwardAgent ? false, }: { - proxyCommand = "${lib.getExe pkgs.python3} -S ${pkgs.google-cloud-sdk}/google-cloud-sdk/lib/gcloud.py compute start-iap-tunnel ${hostname} %p --listen-on-stdin --project ${project} --zone ${zone} --verbosity warning"; + proxyCommand = "${lib.getExe pkgs.python3} -S ${pkgs.google-cloud-sdk}/google-cloud-sdk/lib/gcloud.py compute start-iap-tunnel ${hostname} %p --listen-on-stdin --project ${project} --zone ${zone}"; forwardAgent = forwardAgent; checkHostIP = false; identitiesOnly = true;