Nix flake: one-import NixOS support#21
Merged
Merged
Conversation
Trigger profiles UI polish + engine startup recognition fixes
OpenDS5 1.7.0: rebrand, system installer, first-launch wizard, public profile library
nixosModules.default replaces the entire installer flow on NixOS: vds_hcd built from the in-tree source against the configured kernel, vdsd/vdsctl built from vds/ (no glibc prebuilts), udev rules, vds group, wireplumber conf, and the vdsd unit — services.opends5.enable. The --install-system generator remains as the fallback for non-flake configurations; docs/INSTALLER.md gains a full NixOS section covering both paths and the update procedure.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a Nix flake so NixOS users install everything with two lines of config instead of the manual generator dance:
nixosModules.default— builds thevds_hcdmodule against the user's configured kernel, buildsvdsd/vdsctlfrom the in-treevds/source (replacing the glibc prebuilts that don't run on NixOS), and sets up the udev rules,vdsgroup, wireplumber config, andvdsdservice viaservices.opends5.enable.packages.vds/packages.vds-module— buildable on any machine with Nix for smoke-testing.docs/INSTALLER.md— NixOS section rewritten flake-first; the--install-systemgenerator stays as the non-flake fallback.The derivations were written against the real CMake/Kbuild files but not compiled locally (no Nix on the dev box) — the CI run on this PR is the verification.