After installation using nix-installer v0.17.0 on Linux x64, with a custom ssl-cert-file value set, nss-cacert is still added to the Nix profile.
# nix profile history
Version 1 (2024-03-06):
nix: ∅ -> 2.20.3
Version 2 (2024-03-06) <- 1:
nss-cacert: ∅ -> 3.95
When we're using our own certificates file through user configuration there is presumably no reason to add nss-cacert. Perhaps the installer could be modified to detect this case and not install nss-cacert.
For the benefit of anyone reading this issue who wants to remove nss-cacert immediately after installation, you can run the following:
nix profile rollback --to 1 && nix store gc
Which will work as long as no other Nix profile versions are created by newer versions of nix-installer.
After installation using nix-installer v0.17.0 on Linux x64, with a custom
ssl-cert-file
value set,nss-cacert
is still added to the Nix profile.When we're using our own certificates file through user configuration there is presumably no reason to add
nss-cacert
. Perhaps the installer could be modified to detect this case and not installnss-cacert
.For the benefit of anyone reading this issue who wants to remove
nss-cacert
immediately after installation, you can run the following:Which will work as long as no other Nix profile versions are created by newer versions of
nix-installer
.