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 =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
packages = {
|
||||
# Documentation
|
||||
inherit (import ../docs { inherit pkgs lib; })
|
||||
packages =
|
||||
let
|
||||
docs-pkg = import ../docs { inherit pkgs lib; };
|
||||
inherit (docs-pkg)
|
||||
docs
|
||||
home-markdown
|
||||
nixos-markdown
|
||||
nvim-markdown
|
||||
home-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