summaryrefslogtreecommitdiff
path: root/modules/users/default.nix
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-14 23:02:32 +0200
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-19 04:05:50 +0200
commitdef1e23be848848400d1d097d4f044e3c401f9dd (patch)
tree7a69686dea36e304c788531fda90bc3edeee86fd /modules/users/default.nix
parent99b3f9a1f5d2604d542f367d38001dfa40eea7b9 (diff)
treewide: remove lib.mdDoc
Diffstat (limited to 'modules/users/default.nix')
-rw-r--r--modules/users/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/users/default.nix b/modules/users/default.nix
index 25cc97e..cd0986d 100644
--- a/modules/users/default.nix
+++ b/modules/users/default.nix
@@ -39,7 +39,7 @@ in
users.knownGroups = mkOption {
type = types.listOf types.str;
default = [];
- description = lib.mdDoc ''
+ description = ''
List of groups owned and managed by nix-darwin. Used to indicate
what users are safe to create/delete based on the configuration.
Don't add system groups to this.
@@ -49,7 +49,7 @@ in
users.knownUsers = mkOption {
type = types.listOf types.str;
default = [];
- description = lib.mdDoc ''
+ description = ''
List of users owned and managed by nix-darwin. Used to indicate
what users are safe to create/delete based on the configuration.
Don't add the admin user or other system users to this.
@@ -59,13 +59,13 @@ in
users.groups = mkOption {
type = types.attrsOf (types.submodule group);
default = {};
- description = lib.mdDoc "Configuration for groups.";
+ description = "Configuration for groups.";
};
users.users = mkOption {
type = types.attrsOf (types.submodule user);
default = {};
- description = lib.mdDoc "Configuration for users.";
+ description = "Configuration for users.";
};
users.gids = mkOption {
@@ -84,7 +84,7 @@ in
internal = true;
type = types.bool;
default = false;
- description = lib.mdDoc "Remove and recreate existing groups/users.";
+ description = "Remove and recreate existing groups/users.";
};
};