diff options
| author | Emily <vcs@emily.moe> | 2023-06-22 09:05:03 +0100 |
|---|---|---|
| committer | Emily <vcs@emily.moe> | 2023-06-24 10:48:55 +0100 |
| commit | efe314cdbabaf5cd210d9c658b4ad540437b7ee5 (patch) | |
| tree | 8b00b1c0518922b71311ba2e0c448d6b3e5340d8 /modules/services | |
| parent | c2716817a8e5fb47889aaf625aa13b89d786da51 (diff) | |
treewide: manually convert some docs to Markdown
These all use DocBook markup too complex for `nix-doc-munge` to handle,
have syntax that clashes with Markdown, or already contain Markdown
syntax that currently isn't rendering correctly.
Converting DocBook list syntax makes me think that maybe Markdown
isn't so bad after all.
Diffstat (limited to 'modules/services')
| -rw-r--r-- | modules/services/wg-quick.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/services/wg-quick.nix b/modules/services/wg-quick.nix index 40725ff..1456823 100644 --- a/modules/services/wg-quick.nix +++ b/modules/services/wg-quick.nix @@ -113,8 +113,12 @@ let table = mkOption { type = types.nullOr types.str; default = null; - description = - "Controls the routing table to which routes are added. There are two special values: `off' disables the creation of routes altogether, and `auto' (the default) adds routes to the default table and enables special handling of default routes."; + description = lib.mdDoc '' + Controls the routing table to which routes are added. There are two + special values: `off` disables the creation of routes altogether, + and `auto` (the default) adds routes to the default table and + enables special handling of default routes. + ''; }; }; }; |
