-
-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to develop on nixops-libvird ? #1
Comments
Copying the discussion from #nixops irc channel:
|
running that command:
doesn't run libvirtd in develop mode, so I have to rerun the command after each change :/ |
I've updated to nixops master (not used for the past 6 months ) and |
I'm wanting to do this too but there isn't a The "hacking" link for this repo unfortunately resolves to an older version of the NixOps docs. The link is correct it's just that it resolves to an older build. Running the new commands only results in a version of nixops, it doesn't pull libvirtd in with it, which makes sense. |
With the new plugin system it's not clear how one can install NixOps + libvirt. I don't see anything in the NixOps documentation on how to install plugins either. The released versions of these tools are broken so I'm using a pinned version from Git. However the pinned version I'm using is using libvirt 5.9 which is now flagged in NixOS 20.09 as being disabled for security problems. The code I have for hacking in an override doesn't work anymore: nixops = (super.callPackage "${sources.nixops}/release.nix" {
p = _: [
(super.callPackage "${sources.nixops-libvirtd}/release.nix" { })
];
}).build.${super.system}; The NixOps How are people getting a working NixOps with libvirt support? |
I haven't used nixops the past year but would like to do it again and yes it lacks instructions, Can we add a flake.nix to the repo ? is it just a master of creating a python environment with both nixops and this plugin ? |
I would like to port some of the pull requests from the old repo to the new one.
How can I use this plugin in let's say development mode ? with my local nixops clone.
cheers
The text was updated successfully, but these errors were encountered: