configuration.nix/flake-modules/docs.nix

17 lines
271 B
Nix
Raw Normal View History

{ lib, ... }:
{
perSystem =
{ pkgs, ... }:
{
packages = {
# Documentation
inherit (import ../docs { inherit pkgs lib; })
docs
nixos-markdown
nvim-markdown
home-markdown
;
};
};
}