Tom Hubrecht
63c9f02b16
All checks were successful
lint / check (push) Successful in 23s
Check meta / check_dns (push) Successful in 19s
Check meta / check_meta (push) Successful in 19s
build configuration / build_and_cache_geo01 (push) Successful in 1m9s
build configuration / build_and_cache_rescue01 (push) Successful in 1m20s
build configuration / build_and_cache_storage01 (push) Successful in 1m23s
build configuration / build_and_cache_geo02 (push) Successful in 1m5s
build configuration / build_and_cache_vault01 (push) Successful in 1m15s
build configuration / build_and_cache_compute01 (push) Successful in 1m44s
build configuration / build_and_cache_bridge01 (push) Successful in 1m5s
build configuration / build_and_cache_web03 (push) Successful in 1m12s
build configuration / build_and_cache_web02 (push) Successful in 1m19s
build configuration / build_and_cache_web01 (push) Successful in 1m54s
(Sorry @jemagius)
110 lines
1.7 KiB
Nix
110 lines
1.7 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";
|
|
username = "lbailly";
|
|
};
|
|
|
|
cst1 = {
|
|
name = "Constantin Gierczak--Galle";
|
|
email = "cst1@dgnum.eu";
|
|
username = "cgierczakgalle";
|
|
};
|
|
|
|
ecoppens = {
|
|
name = "Elias Coppens";
|
|
email = "ecoppens@dgnum.eu";
|
|
};
|
|
|
|
jemagius = {
|
|
name = "Jean-Marc Gailis";
|
|
email = "jm@dgnum.eu";
|
|
username = "jgailis";
|
|
};
|
|
|
|
luj = {
|
|
name = "Julien Malka";
|
|
email = "luj@dgnum.eu";
|
|
username = "jmalka";
|
|
};
|
|
|
|
mdebray = {
|
|
name = "Maurice Debray";
|
|
email = "maurice.debray@dgnum.eu";
|
|
};
|
|
|
|
raito = {
|
|
name = "Ryan Lahfa";
|
|
email = "ryan@dgnum.eu";
|
|
username = "rlahfa";
|
|
};
|
|
|
|
thubrecht = {
|
|
name = "Tom Hubrecht";
|
|
email = "tom.hubrecht@dgnum.eu";
|
|
};
|
|
};
|
|
|
|
groups = {
|
|
# members of this group are root on all nodes
|
|
root = [
|
|
"thubrecht"
|
|
"raito"
|
|
"mdebray"
|
|
"luj"
|
|
];
|
|
|
|
# members of this group are root on the fai infrastructure
|
|
fai = [
|
|
"catvayor"
|
|
"ecoppens"
|
|
];
|
|
|
|
lab = [
|
|
"catvayor"
|
|
"cst1"
|
|
"ecoppens"
|
|
];
|
|
|
|
};
|
|
|
|
external = {
|
|
dns = [
|
|
"thubrecht"
|
|
"raito"
|
|
];
|
|
|
|
email = [ "raito" ];
|
|
|
|
irc = [ "raito" ];
|
|
};
|
|
|
|
services = {
|
|
# Démarches Normaliennes
|
|
ds-fr.admins = [
|
|
"thubrecht"
|
|
"jemagius"
|
|
];
|
|
|
|
# Cloud DGNum
|
|
nextcloud.admins = [
|
|
"thubrecht"
|
|
"raito"
|
|
];
|
|
|
|
# Netbox DGNum
|
|
netbox.adminGroups = [
|
|
"root"
|
|
"fai"
|
|
];
|
|
|
|
# Videos DGNum
|
|
peertube.admins = [ "thubrecht" ];
|
|
};
|
|
}
|