summaryrefslogtreecommitdiff
path: root/modules/launchd/default.nix
diff options
context:
space:
mode:
authorEmily <vcs@emily.moe>2023-06-22 09:05:03 +0100
committerEmily <vcs@emily.moe>2023-06-24 10:48:55 +0100
commitefe314cdbabaf5cd210d9c658b4ad540437b7ee5 (patch)
tree8b00b1c0518922b71311ba2e0c448d6b3e5340d8 /modules/launchd/default.nix
parentc2716817a8e5fb47889aaf625aa13b89d786da51 (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/launchd/default.nix')
-rw-r--r--modules/launchd/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/launchd/default.nix b/modules/launchd/default.nix
index f82df2a..ed85509 100644
--- a/modules/launchd/default.nix
+++ b/modules/launchd/default.nix
@@ -137,7 +137,7 @@ in
launchd.agents = mkOption {
default = {};
type = types.attrsOf (types.submodule serviceOptions);
- description = ''
+ description = lib.mdDoc ''
Definition of per-user launchd agents.
When a user logs in, a per-user launchd is started.
@@ -153,7 +153,7 @@ in
launchd.daemons = mkOption {
default = {};
type = types.attrsOf (types.submodule serviceOptions);
- description = ''
+ description = lib.mdDoc ''
Definition of launchd daemons.
After the system is booted and the kernel is running, launchd is run to finish the system initialization.
@@ -169,7 +169,7 @@ in
launchd.user.agents = mkOption {
default = {};
type = types.attrsOf (types.submodule serviceOptions);
- description = ''
+ description = lib.mdDoc ''
Definition of per-user launchd agents.
When a user logs in, a per-user launchd is started.