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