mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
59b933653a
Output is mostly unchanged aside from some minor typographical and formatting changes, along with better source links. We temporarily export `options.docBookForMigration` to allow `nix-doc-munge` to check its conversions.
23 lines
570 B
Nix
23 lines
570 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
rec {
|
|
docs = let releaseInfo = pkgs.lib.importJSON ./release.json;
|
|
in with import ./docs {
|
|
inherit pkgs;
|
|
inherit (releaseInfo) release isReleaseBranch;
|
|
}; {
|
|
html = manual.html;
|
|
manPages = manPages;
|
|
json = options.json;
|
|
jsonModuleMaintainers = jsonModuleMaintainers; # Unstable, mainly for CI.
|
|
};
|
|
|
|
home-manager = pkgs.callPackage ./home-manager { path = toString ./.; };
|
|
|
|
install =
|
|
pkgs.callPackage ./home-manager/install.nix { inherit home-manager; };
|
|
|
|
nixos = import ./nixos;
|
|
|
|
path = ./.;
|
|
}
|