2ac0a35c5e
Some checks failed
We don't have a dns server for the lab infra for now. Later we will probably reintroduce the tooling for our dns server. This will be good for people to get into understanding the main infra repository.
62 lines
1 KiB
Nix
62 lines
1 KiB
Nix
/*
|
|
To add a new member add an attribute to `members`
|
|
Then add the key to the required groups.
|
|
*/
|
|
|
|
{
|
|
members = {
|
|
catvayor = {
|
|
name = "Lubin Bailly";
|
|
email = "catvayor@dgnum.eu";
|
|
};
|
|
|
|
cst1 = {
|
|
name = "Constantin Gierczak--Galle";
|
|
email = "cst1@dgnum.eu";
|
|
};
|
|
|
|
ecoppens = {
|
|
name = "Elias Coppens";
|
|
email = "ecoppens@dgnum.eu";
|
|
};
|
|
|
|
jemagius = {
|
|
name = "Jean-Marc Gailis";
|
|
email = "jm@dgnum.eu";
|
|
};
|
|
|
|
luj = {
|
|
name = "Julien Malka";
|
|
email = "luj@dgnum.eu";
|
|
};
|
|
|
|
mdebray = {
|
|
name = "Maurice Debray";
|
|
email = "maurice.debray@dgnum.eu";
|
|
};
|
|
|
|
raito = {
|
|
name = "Ryan Lahfa";
|
|
email = "ryan@dgnum.eu";
|
|
};
|
|
|
|
thubrecht = {
|
|
name = "Tom Hubrecht";
|
|
email = "tom.hubrecht@dgnum.eu";
|
|
};
|
|
};
|
|
|
|
groups = {
|
|
# members of this group are root on all nodes
|
|
root = [
|
|
"thubrecht"
|
|
"raito"
|
|
"mdebray"
|
|
"luj"
|
|
"catvayor"
|
|
"ecoppens"
|
|
"cst1"
|
|
];
|
|
|
|
};
|
|
}
|