Replies: 2 comments
-
|
I'm not familiar enough with networking shenanigans to help you, but this is probably not directly nvf's fault.
we don't use plugins from nixpkgs because they tend to be slow to update. The blink package you are trying to build is from nvf, but the problem is likely with as a workaround, you can try to use the built blink plugin from nixpkgs: vim.pluginOverrides = {
blink-cmp = pkgs.vimPlugins.blink-cmp;
} |
Beta Was this translation helpful? Give feedback.
-
|
Hi, Yes I think you are totally correct on the fact that the issue arise from the |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I have confirmed that this is a bug related to nvf
Description
In a work environment using a MITM proxy with self-signed certificates, the
blink-cmppackage fails to build. The underlying mechanism appears to use Python'srequestslibrary, which does not respect theNIX_SSL_CERT_FILEenvironment variable or the PKI certificates configured in the NixOS configuration file. This results in SSL errors and a failed build.I am unsure whether this is an issue with the
nvfflake or theblink-cmppackage innixpkgs, as I am relatively new to Nix.Unfortunately, I can't provide any log nor screenshots because of the nature of the work environment.
Installation Method
NixOS Module (
nixosModules.default)Installation Method (Other)
No response
nvf Version
master
Reproduction steps
/etc/nixos/configuration.nix).nvfflake to your Nix configuration and enableblink-cmp.requestsdoes not recognize the certificates provided byNIX_SSL_CERT_FILEor the NixOS configuration.Expected behavior
he build should succeed, with
blink-cmprespecting the certificates provided byNIX_SSL_CERT_FILEor the NixOS configuration, allowing it to communicate through the MITM proxy.Actual Behavior
The build fails with SSL errors, as
requestsdoes not use the provided certificates, preventing the package from being built in a proxied environment.System Information
Relevant log output
Beta Was this translation helpful? Give feedback.
All reactions