docs: minor formatting changes

Gerg I swear to god...
This commit is contained in:
NotAShelf 2024-09-24 06:27:06 +03:00
parent 842b45b969
commit 316f25a0f6
No known key found for this signature in database
GPG key ID: AF26552424E53993

View file

@ -100,11 +100,9 @@ in {
# TODO: Use `hmOptionsDocs.optionsJSON` directly once upstream # TODO: Use `hmOptionsDocs.optionsJSON` directly once upstream
# `nixosOptionsDoc` is more customizable. # `nixosOptionsDoc` is more customizable.
options.json = options.json =
pkgs.runCommand "options.json" pkgs.runCommand "options.json" {
{
meta.description = "List of nvf options in JSON format"; meta.description = "List of nvf options in JSON format";
} } ''
''
mkdir -p $out/{share/doc,nix-support} mkdir -p $out/{share/doc,nix-support}
cp -a ${nvimModuleDocs.optionsJSON}/share/doc/nixos $out/share/doc/nvf cp -a ${nvimModuleDocs.optionsJSON}/share/doc/nixos $out/share/doc/nvf
substitute \ substitute \
@ -117,15 +115,13 @@ in {
# Generate the `man home-configuration.nix` package # Generate the `man home-configuration.nix` package
manPages = manPages =
pkgs.runCommand "nvf-reference-manpage" pkgs.runCommand "nvf-reference-manpage" {
{
nativeBuildInputs = [ nativeBuildInputs = [
pkgs.buildPackages.installShellFiles pkgs.buildPackages.installShellFiles
pkgs.nixos-render-docs pkgs.nixos-render-docs
]; ];
allowedReferences = ["out"]; allowedReferences = ["out"];
} } ''
''
# Generate manpages. # Generate manpages.
mkdir -p $out/share/man/{man5,man1} mkdir -p $out/share/man/{man5,man1}