0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

Merge pull request #208983 from pennae/nixos-manual-md

nixos/manual: convert module chapters to markdown
This commit is contained in:
pennae 2023-01-13 13:29:01 +01:00 committed by GitHub
commit d6e464b4c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
105 changed files with 9396 additions and 4822 deletions

View file

@ -20,7 +20,7 @@ You can enable FooBoot like this:
}
```
## Developing Custom Bootloader Backends
## Developing Custom Bootloader Backends {#sec-bootloader-external-developing}
Bootloaders should use [RFC-0125](https://github.com/NixOS/rfcs/pull/125)'s Bootspec format and synthesis tools to identify the key properties for bootable system generations.

View file

@ -8,8 +8,6 @@ in
{
meta = {
maintainers = with maintainers; [ cole-h grahamc raitobezarius ];
# Don't edit the docbook xml directly, edit the md and generate it:
# `pandoc external.md -t docbook --top-level-division=chapter --extract-media=media -f markdown+smart > external.xml`
doc = ./external.xml;
};

View file

@ -1,3 +1,5 @@
<!-- Do not edit this file directly, edit its companion .md instead
and regenerate this file using nixos/doc/manual/md-to-db.sh -->
<chapter xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="sec-bootloader-external">
<title>External Bootloader Backends</title>
<para>
@ -29,7 +31,7 @@
};
}
</programlisting>
<section xml:id="developing-custom-bootloader-backends">
<section xml:id="sec-bootloader-external-developing">
<title>Developing Custom Bootloader Backends</title>
<para>
Bootloaders should use