1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-13 20:30:02 +00:00

Merge pull request #1059 from emilazy/push-oooqqvvowrxt

users: allow arbitrary group IDs
This commit is contained in:
Emily 2024-09-05 14:51:52 +01:00 committed by GitHub
commit a55b3f1ab4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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.";
};