summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/users/group.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/users/group.nix b/modules/users/group.nix
index 1dc26f1..0e74085 100644
--- a/modules/users/group.nix
+++ b/modules/users/group.nix
@@ -13,10 +13,7 @@ with lib;
};
gid = mkOption {
- type = mkOptionType {
- name = "gid";
- check = t: isInt t && t > 501;
- };
+ type = types.int;
description = "The group's GID.";
};