add ca certs
Some checks failed
Check / check (push) Failing after 43s

This commit is contained in:
Joakim Repomaa
2026-02-20 20:48:42 +02:00
parent b3bd943175
commit e1f21c2a2a

View File

@@ -155,9 +155,14 @@
busybox busybox
]; ];
}; };
config.Env = [ config = {
"NIX_CONFIG=experimental-features = nix-command flakes" User = "node";
]; Env = [
"NIX_CONFIG=experimental-features = nix-command flakes"
"SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"
"NODE_EXTRA_CA_CERTS=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"
];
};
}; };
} }
) )