From 6c6fb1480cf786d0c28f38b6cbf20a72ab2a6d5d Mon Sep 17 00:00:00 2001 From: Robin Lambertz Date: Mon, 22 Jul 2024 11:24:14 +0200 Subject: [PATCH] k9s: Use native DNS resolver Using the go resolver will result in problems when accessing a kube cluster behind a VPN on macOS. See https://github.com/derailed/k9s/issues/780 --- pkgs/applications/networking/cluster/k9s/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/cluster/k9s/default.nix b/pkgs/applications/networking/cluster/k9s/default.nix index c83566170d0f..8e91f641a7a3 100644 --- a/pkgs/applications/networking/cluster/k9s/default.nix +++ b/pkgs/applications/networking/cluster/k9s/default.nix @@ -19,7 +19,7 @@ buildGoModule rec { "-X github.com/derailed/k9s/cmd.date=1970-01-01T00:00:00Z" ]; - tags = [ "netgo" ]; + tags = [ "netcgo" ]; proxyVendor = true;