flake: add docs to packages output

This commit is contained in:
Samuel Gräfenstein 2021-09-18 04:33:20 +02:00 committed by Robert Helgesson
parent 7cb118c9d2
commit 4320399a3e
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
1 changed files with 8 additions and 3 deletions

View File

@ -18,9 +18,14 @@
darwinModules.home-manager = import ./nix-darwin;
darwinModule = self.darwinModules.home-manager;
packages = forAllSystems (system: {
home-manager = nixpkgsFor.${system}.callPackage ./home-manager { };
});
packages = forAllSystems (system:
let docs = import ./docs { pkgs = nixpkgsFor.${system}; };
in {
home-manager = nixpkgsFor.${system}.callPackage ./home-manager { };
docs-html = docs.manual.html;
docs-manpages = docs.manPages;
docs-json = docs.options.json;
});
defaultPackage =
forAllSystems (system: self.packages.${system}.home-manager);