1
0

configuration/common: Make Python requests always use system CA

This commit is contained in:
2025-05-19 18:43:38 +02:00
parent 44d1a444ba
commit b93dc9f16b
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{ config, ... }:
{
environment.sessionVariables = {
REQUESTS_CA_BUNDLE = config.security.pki.caBundle;
};
}