-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.nix
175 lines (157 loc) · 4.53 KB
/
data.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
{
header = ''
# NixOS organization
An entrypoint to help you navigate the official ecosystem. Who owns what, what resources exist, ...
## How to make changes
Anybody can propose changes with PRs, or open issues to have discussions.
The `README.md` file is automatically generated from the [`data.nix`](./data.nix) file,
so open PRs against that instead.
You can test your changes locally using
```
nix run .#checkReadme
```
The person merging PRs will ensure that the change is implemented, either automatically or manually.
'';
resources = {
twitter = {
name = "Twitter account";
owner = "marketing";
kind = "account";
website = "https://twitter.com/nixos_org";
};
mastodon = {
name = "Mastodon account";
owner = "marketing";
kind = "account";
website = "https://mastodon.social/@[email protected]";
};
youtube = {
name = "YouTube account";
owner = "marketing";
kind = "account";
website = "https://www.youtube.com/@NixOS-Foundation";
};
opencollective = {
name = "OpenCollective account";
owner = "foundation";
kind = "account";
website = "https://opencollective.com/nixos";
};
foundation = {
name = "Legal foundation";
owner = "foundation";
kind = "legal";
website = "https://www.kvk.nl/bestellen/#/63520583";
};
github = {
name = "GitHub organisation";
owner = "github";
kind = "account";
website = "https://github.com/NixOS";
};
"nixos.org" = {
name = "nixos.org DNS zone";
owner = "infra";
kind = "account";
};
};
teams = {
github = {
name = "GitHub organisation owners";
description = ''
This team is responsible for the GitHub organisation account.
'';
homepage = "https://github.com/NixOS";
matrixRoom = null;
leader = "zimbatm";
members = [
"zimbatm"
"edolstra"
# ...
];
};
infra = {
#level = "resource";
name = "Infra team";
description = ''
The infra team is responsible for the Nix and NixOS infrastructure.
Most notably, they are making sure that our CI (Hydra) and binary cache.
'';
homepage = "https://github.com/NixOS/infra";
matrixRoom = "#infra:nixos.org";
leader = "zimbatm";
members = [
"zimbatm"
"delroth"
"hexa"
];
};
foundation = {
#level = "resource";
name = "NixOS Foundation board";
description = ''
The foundation is responsible for the legal and funding aspect of our project.
If you are a company, go talk to them!
If you are a member that needs funding for one of your projects, go talk to them!
'';
homepage = "https://github.com/NixOS/foundation";
matrixRoom = "#foundation:nixos.org";
leader = null;
members = [ "edolstra" ];
};
moderation = {
#level = "resource";
name = "Moderation team";
description = ''
The moderation team is responsible for the culture and maintaining a standard of behaviour in our community.
If you need to report any misbehaviour, please talk to them!
'';
homepage = "https://github.com/NixOS/moderation";
matrixRoom = "#moderation:nixos.org";
members = [ ];
};
marketing = {
#level = "resource";
name = "Marketing team";
description = ''
The marketing team is responsible for reporting what happens in our community to the outside world.
If you need to get some T-Shirts or swag, talk to them!
'';
homepage = "https://github.com/NixOS/marketing";
matrixRoom = "#marketing:nixos.org";
members = [ ];
};
nix = {
#level = "project";
name = "Nix team";
description = ''
The Nix team is responsible for the implementation of the Nix language.
'';
homepage = "https://github.com/NixOS/nix";
matrixRoom = "#nix-dev:nixos.org";
members = [ ];
};
};
people = {
edolstra = {
name = "Eelco Dolstra";
github = "edolstra";
email = "[email protected]";
};
zimbatm = {
name = "zimbatm";
email = "[email protected]";
github = "zimbatm";
};
delroth = {
name = "Pierre Bourdon";
email = "[email protected]";
github = "delroth";
};
hexa = {
name = "Martin Weinelt";
email = "[email protected]";
github = "mweinelt";
};
};
}