1

Bugfix after refactor

This commit is contained in:
2023-05-24 21:02:57 +02:00
parent 4dab06a5d2
commit 5d3a1a5ec2
2 changed files with 11 additions and 1 deletions

View File

@ -82,6 +82,10 @@ in
python310Packages.pygments python310Packages.pygments
]; ];
# TODO: Use a file, this is stupid
# TODO: Fix the navigation sections
# TODO: Customize features
# TODO: Remove or fix ToC
# symlink our generated docs into the correct folder before generating # symlink our generated docs into the correct folder before generating
buildPhase = '' buildPhase = ''
# configure mkdocs # configure mkdocs
@ -89,8 +93,13 @@ in
echo "use_directory_urls: false" >> ./mkdocs.yml echo "use_directory_urls: false" >> ./mkdocs.yml
echo "theme:" >> ./mkdocs.yml echo "theme:" >> ./mkdocs.yml
echo " name: material" >> ./mkdocs.yml echo " name: material" >> ./mkdocs.yml
echo " features:" >> ./mkdocs.yml
echo " - navigation.sections" >> ./mkdocs.yml
echo "nav:" >> ./mkdocs.yml echo "nav:" >> ./mkdocs.yml
echo -e " - ${builtins.concatStringsSep ".md\n - " modules}.md" >> ./mkdocs.yml echo " - System:"
echo -e " - ${builtins.concatStringsSep ".md\n - " system-modules}.md" >> ./mkdocs.yml
echo " - Home:"
echo -e " - ${builtins.concatStringsSep ".md\n - " home-modules}.md" >> ./mkdocs.yml
# mkdir ./docs # mkdir ./docs
ln -s ${docs} "./docs" ln -s ${docs} "./docs"

View File

@ -9,5 +9,6 @@
}: { }: {
imports = [ imports = [
./systemd-networkd ./systemd-networkd
./containers
]; ];
} }