mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-12 04:59:23 +08:00
9 lines
259 B
Nix
9 lines
259 B
Nix
inputs:
|
|
{
|
|
config = let inherit (inputs.config.nixos) user; in inputs.lib.mkIf (builtins.elem "zgq" user.users)
|
|
{
|
|
users.users.zgq.extraGroups = inputs.lib.mkIf (inputs.config.nixos.model.cluster.clusterName or null == "srv1")
|
|
[ "wheel" ];
|
|
};
|
|
}
|