mirror of
https://github.com/nix-community/home-manager
synced 2025-02-23 08:35:08 +01:00
Without this fix a `nix-buid . -A home-manager` would successfully create a `home-manager`. And one could use the included binary until the next garbage collection, after that it would fail with an error that it can not find the `home-manager` sources. Similarily a `nix-copy-closure`d `home-manager` would fail with the same error on the copies target machine. This problem existed on both, the flake as well as the non-flake build of `home-manager`.
29 lines
653 B
Nix
29 lines
653 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
let
|
|
path = builtins.path {
|
|
path = ./.;
|
|
name = "home-manager-source";
|
|
};
|
|
|
|
in 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 { inherit path; };
|
|
|
|
install =
|
|
pkgs.callPackage ./home-manager/install.nix { inherit home-manager; };
|
|
|
|
nixos = import ./nixos;
|
|
|
|
inherit path;
|
|
}
|