diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2023-03-27 15:37:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-27 15:37:15 +0200 |
commit | 5a0f5b5c34d90fe6515d23446402c491b992a99b (patch) | |
tree | 5678953d71137ec0e114ccbc604805b52799c4fa /doc/manual/src | |
parent | 570829d67e78d97d53a935e4e61b0a09589c4cd1 (diff) | |
parent | a519436e9d78fa6500999485c2c638553a32696f (diff) |
Merge pull request #8062 from edolstra/ssl-cert-file
Add a setting for configuring the SSL certificates file
Diffstat (limited to 'doc/manual/src')
-rw-r--r-- | doc/manual/src/installation/env-variables.md | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/doc/manual/src/installation/env-variables.md b/doc/manual/src/installation/env-variables.md index fb8155a80..db98f52ff 100644 --- a/doc/manual/src/installation/env-variables.md +++ b/doc/manual/src/installation/env-variables.md @@ -42,14 +42,11 @@ export NIX_SSL_CERT_FILE=/etc/ssl/my-certificate-bundle.crt > You must not add the export and then do the install, as the Nix > installer will detect the presence of Nix configuration, and abort. -## `NIX_SSL_CERT_FILE` with macOS and the Nix daemon +If you use the Nix daemon, you should also add the following to +`/etc/nix/nix.conf`: -On macOS you must specify the environment variable for the Nix daemon -service, then restart it: - -```console -$ sudo launchctl setenv NIX_SSL_CERT_FILE /etc/ssl/my-certificate-bundle.crt -$ sudo launchctl kickstart -k system/org.nixos.nix-daemon +``` +ssl-cert-file = /etc/ssl/my-certificate-bundle.crt ``` ## Proxy Environment Variables |