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

This makes the size report look better as the docs are grouped together.
This commit is contained in:
Jalil David Salamé Messina 2024-12-15 13:40:18 +01:00
parent e7cf864c29
commit 05ec4d3116
Signed by: jalil
GPG key ID: F016B9E770737A0B

View file

@ -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;
};
};
}