Jeroen Wijenbergh
Jeroen Wijenbergh
Thanks for your issue, the reason I care about Nix(Os) is because I use it myself too :) That is actually a quite strange error, you are on 23.11. Do...
Yeah that's what I figured. I am guessing what happens is that because all deps are fetched using the unstable channel too, they have a mismatch with the globally installed...
This should work (replace channel if you want, I used nixos-unstable) ```nix nixpkgs.overlays = [ (final: prev: { pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [ (python-final: python-prev: { eduvpn-common = python-final.callPackage "${}/pkgs/development/python-modules/eduvpn-common/default.nix"...
Yeah indeed, it's relatively new https://github.com/NixOS/nixpkgs/pull/91850 Previously you had to do some convoluted stuff with composeManyExtensions
Thanks for the PR. Are you trying to use the client without NetworkManager or just looking to improve the error handling when it is not available? Currently client cannot work...
> basically, it would be nice to be able to generate plaintext configs without NM. (so that's the end goal, but this fixes just the stuff that directly crashes) I...
Also if you're right now looking to have a very basic eduVPN cli, you may also use https://github.com/eduvpn/eduvpn-common/blob/main/cmd/cli/main.go
I made some tiny changes to fix #434, can you rebase if you're still working on this?
> @jwijenbergh if I understand correctly the changes will only skip the tests for NM? But how will it be possible with eduvpn-cli to connect without NM? Could you provide...
> @jwijenbergh > > > Also if you're right now looking to have a very basic eduVPN cli, you may also use > > How does one use that? Sorry...