summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorEmily <vcs@emily.moe>2024-09-05 14:51:52 +0100
committerGitHub <noreply@github.com>2024-09-05 14:51:52 +0100
commita55b3f1ab41bb6d5025ebeebb4da5fd240b9b3b3 (patch)
tree5e95606d8710e4ac3011d96ee74da7c3594b72c5 /modules
parent92bd25c29f3be33bc0d47acb7b5db0cae43bb7d3 (diff)
parent97e0f7275966cfab018aaee1a0d1e5ce74cd8901 (diff)
Merge pull request #1059 from emilazy/push-oooqqvvowrxt
users: allow arbitrary group IDs
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.";
};