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
];
};
config.Env = [
"NIX_CONFIG=experimental-features = nix-command flakes"
];
config = {
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"
];
};
};
}
)