summaryrefslogtreecommitdiffstats
path: root/nixos/modules/misc/ids.nix
diff options
context:
space:
mode:
authorpennae <github@quasiparticle.net>2022-08-29 01:38:36 +0200
committerpennae <github@quasiparticle.net>2022-08-31 16:32:54 +0200
commit9547123258f69efd92b54763051d6dc7f3bfcaca (patch)
tree87d42b10b0f436c50e8aa04c00c27d289c61c4e2 /nixos/modules/misc/ids.nix
parentef176dcf7e76c3639571d7c6051246c8fbadf12a (diff)
nixos/*: convert internal option descriptions to MD
we'll have to do it eventually, may as well be now.
Diffstat (limited to 'nixos/modules/misc/ids.nix')
-rw-r--r--nixos/modules/misc/ids.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix
index 38ab338aa56c..cbc3b612059d 100644
--- a/nixos/modules/misc/ids.nix
+++ b/nixos/modules/misc/ids.nix
@@ -19,7 +19,7 @@ in
ids.uids = lib.mkOption {
internal = true;
- description = ''
+ description = lib.mdDoc ''
The user IDs used in NixOS.
'';
type = types.attrsOf types.int;
@@ -27,7 +27,7 @@ in
ids.gids = lib.mkOption {
internal = true;
- description = ''
+ description = lib.mdDoc ''
The group IDs used in NixOS.
'';
type = types.attrsOf types.int;