Nixpkgs/Manuals: Difference between revisions
Phanirithvij (talk | contribs) m use a real older version |
Phanirithvij (talk | contribs) m fix order |
||
(3 intermediate revisions by the same user not shown) | |||
Line 6: | Line 6: | ||
The manual for nix, the package manager | The manual for nix, the package manager | ||
https://nix.dev/manual/nix/unstable | |||
https://nix.dev/manual/nix/stable | https://nix.dev/manual/nix/stable | ||
https://nix.dev/manual/nix/2.24 | https://nix.dev/manual/nix/2.24 | ||
Line 24: | Line 24: | ||
The manual for nixos, the linux based operating system | The manual for nixos, the linux based operating system | ||
https://nixos.org/manual/nixos/unstable | |||
https://nixos.org/manual/nixos/stable | https://nixos.org/manual/nixos/stable | ||
=== home-manager === | === home-manager === | ||
The manual for [[ | The manual for [[Home Manager]] | ||
https://nix-community.github.io/home-manager | https://nix-community.github.io/home-manager | ||
=== nix-darwin === | |||
The manual for [[Nix-darwin]] | |||
https://daiderd.com/nix-darwin/manual/index.html | |||
== Building the manuals yourself == | == Building the manuals yourself == | ||
Line 84: | Line 90: | ||
# after 2.25.x | # after 2.25.x | ||
nix build github:nixos/nix/2.25.0# | nix build github:nixos/nix/2.25.0#nix-manual --print-out-paths --no-link | ||
# master | # master | ||
nix build github:nixos/nix#packages. | nix build github:nixos/nix#nix-manual --print-out-paths --no-link | ||
# for other system | |||
nix build github:nixos/nix/2.25.0#packages.aarch64-darwin.nix-manual --print-out-paths --no-link | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 98: | Line 107: | ||
# stable version, e.g. 24.11 | # stable version, e.g. 24.11 | ||
nix build github:nix-community/home-manager/release-24.11#docs-html --print-out-paths --no-link | nix build github:nix-community/home-manager/release-24.11#docs-html --print-out-paths --no-link | ||
</syntaxhighlight> | |||
=== nix-darwin manual === | |||
<syntaxhighlight lang="bash"> | |||
# unstable | |||
nix build github:LnL7/nix-darwin#manualHTML --print-out-paths --no-link | |||
# stable version, e.g. 24.11 | |||
nix build github:LnL7/nix-darwin/nix-darwin-24.11#manualHTML --print-out-paths --no-link | |||
# in local clone with nix-build | |||
nix-build release.nix -A docs.manualHTML | |||
</syntaxhighlight> | </syntaxhighlight> |