refactor(docs): rename markdown packages
All checks were successful
/ check (push) Successful in 47s
/ build (audiomenu) (push) Successful in 1s
/ build (docs) (push) Successful in 1s
/ build (jpassmenu) (push) Successful in 1s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 1s
/ build (nvim) (push) Successful in 1s
/ report-size (push) Successful in 1s
All checks were successful
/ check (push) Successful in 47s
/ build (audiomenu) (push) Successful in 1s
/ build (docs) (push) Successful in 1s
/ build (jpassmenu) (push) Successful in 1s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 1s
/ build (nvim) (push) Successful in 1s
/ report-size (push) Successful in 1s
This makes the size report look better as the docs are grouped together.
This commit is contained in:
parent
e7cf864c29
commit
05ec4d3116
1 changed files with 17 additions and 9 deletions
|
@ -3,14 +3,22 @@
|
||||||
perSystem =
|
perSystem =
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
packages = {
|
packages =
|
||||||
# Documentation
|
let
|
||||||
inherit (import ../docs { inherit pkgs lib; })
|
docs-pkg = import ../docs { inherit pkgs lib; };
|
||||||
docs
|
inherit (docs-pkg)
|
||||||
nixos-markdown
|
docs
|
||||||
nvim-markdown
|
home-markdown
|
||||||
home-markdown
|
nixos-markdown
|
||||||
;
|
nvim-markdown
|
||||||
};
|
;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
# Documentation
|
||||||
|
inherit docs;
|
||||||
|
docs-home-markdown = home-markdown;
|
||||||
|
docs-nixos-markdown = nixos-markdown;
|
||||||
|
docs-nvim-markdown = nvim-markdown;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue