From a597e9c69c88f71b111f5d2df250a4bb25932139 Mon Sep 17 00:00:00 2001 From: mfyuu <83203852+mfyuu@users.noreply.github.com> Date: Fri, 27 Feb 2026 12:12:48 +0900 Subject: [PATCH] fix(M4Pro): add AWS_CA_BUNDLE for corporate SSL proxy - AWS CLI (Python-based) uses AWS_CA_BUNDLE env var to specify the CA certificate path - SSL_CERT_FILE also works, but AWS_CA_BUNDLE is preferred per AWS official documentation --- hosts/M4Pro/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/M4Pro/default.nix b/hosts/M4Pro/default.nix index 209c306..961c524 100644 --- a/hosts/M4Pro/default.nix +++ b/hosts/M4Pro/default.nix @@ -9,6 +9,7 @@ in DENO_CERT = customCert; NODE_EXTRA_CA_CERTS = customCert; GIT_SSL_CAINFO = customCert; + AWS_CA_BUNDLE = customCert; }; }; }