mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
feat(steam): mkbeatsaber
This commit is contained in:
parent
46c6fbc8c1
commit
fc11fb8152
18 changed files with 891 additions and 44 deletions
|
|
@ -20,6 +20,19 @@ in {
|
|||
filterAttrs (_: user: userIs "peeps" user && userIs "kyuuto" user) config.users.users
|
||||
);
|
||||
};
|
||||
steamaccount = {
|
||||
gid = 8131;
|
||||
};
|
||||
beatsaber = {
|
||||
gid = 8132;
|
||||
};
|
||||
|
||||
admin = {
|
||||
gid = 8126;
|
||||
members = mapAttrsToList (_: user: user.name) (
|
||||
filterAttrs (_: user: userIs "peeps" user && userIs "wheel" user) config.users.users
|
||||
);
|
||||
};
|
||||
};
|
||||
users.users = {
|
||||
guest = {
|
||||
|
|
@ -27,5 +40,10 @@ in {
|
|||
group = "nogroup";
|
||||
isSystemUser = true;
|
||||
};
|
||||
admin = {
|
||||
uid = 8126;
|
||||
group = "admin";
|
||||
isSystemUser = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue