1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00
nix-darwin/modules/users/group.nix
2024-10-22 16:02:21 +11:00

33 lines
643 B
Nix

{ name, lib, ... }:
{
options = let
inherit (lib) mkOption types;
in {
name = mkOption {
type = types.str;
default = name;
description = ''
The group's name. If undefined, the name of the attribute set
will be used.
'';
};
gid = mkOption {
type = types.int;
description = "The group's GID.";
};
members = mkOption {
type = types.listOf types.str;
default = [];
description = "The group's members.";
};
description = mkOption {
type = types.str;
default = "";
description = "The group's description.";
};
};
}