The mdBook migration split the manual into one HTML page per section, but same-page fragment links (e.g. [Standalone setup](#sec-flakes-standalone)) were left pointing at anchors that now live on other pages, so they silently do nothing when clicked. Rewrite all cross-page fragment links in docs/manual and docs/release-notes to page-qualified relative links. Option anchor links (#opt-*, #nixos-opt-*, #nix-darwin-opt-*) are untouched since convert-markup.py rewrites those at build time. Also give the previously empty-label [](#sec-tests) link in the 25.05 release notes a "Tests" label, since the mdBook renderer does not auto-fill labels from the target heading. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1.5 KiB
Getting started
If you have not previously forked Home Manager then you need to do that first. Have a look at GitHub's Fork a repo for instructions on how to do this.
Once you have a fork of Home Manager you should create a branch starting
at the most recent master branch. Give your branch a reasonably
descriptive name. Commit your changes to this branch and when you are
happy with the result and it fulfills Guidelines then
push the branch to GitHub and create a pull
request.
Assuming your clone is at $HOME/devel/home-manager then you can make
the home-manager command use it by either
-
overriding the default path by using the
-Icommand line option:$ home-manager -I home-manager=$HOME/devel/home-manageror, if using flakes:
$ home-manager --override-input home-manager ~/devel/home-manageror
-
changing the default path by ensuring your configuration includes
programs.home-manager.enable = true; programs.home-manager.path = "$HOME/devel/home-manager";and running
home-manager switchto activate the change. Afterwards,home-manager buildandhome-manager switchwill use your cloned repository.
The first option is good if you only temporarily want to use your clone.