MyNixOS website logo
option

services.taskserver.organisations

An attribute set where the keys name the organisation and the values are a set of lists of users and groups.

Declarations
Type
attribute set of (submodule)
Default
{ }
Example
{
  myShinyOrganisation = {
    groups = [
      "staff"
      "outsiders"
    ];
    users = [
      "alice"
      "bob"
    ];
  };
  yetAnotherOrganisation = {
    users = [
      "foo"
      "bar"
    ];
  };
}