mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-31 04:04:45 +00:00
users: allow arbitrary group IDs
The upstream Nix UID/GID changes for Sequoia will require us to manage a group with GID 350. That will require more work on our end to ensure compatibility and a working migration path, but this is enough to allow hacking around it locally in system configurations for now.
This commit is contained in:
parent
92bd25c29f
commit
97e0f72759
1 changed files with 1 additions and 4 deletions
|
@ -13,10 +13,7 @@ with lib;
|
||||||
};
|
};
|
||||||
|
|
||||||
gid = mkOption {
|
gid = mkOption {
|
||||||
type = mkOptionType {
|
type = types.int;
|
||||||
name = "gid";
|
|
||||||
check = t: isInt t && t > 501;
|
|
||||||
};
|
|
||||||
description = "The group's GID.";
|
description = "The group's GID.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue