infrastructure/meta/organization.nix
katvayor f9a34353a3
All checks were successful
Check meta / check_meta (push) Successful in 24s
Check meta / check_dns (push) Successful in 45s
build configuration / build_vault01 (push) Successful in 1m6s
build configuration / build_storage01 (push) Successful in 1m7s
build configuration / build_compute01 (push) Successful in 1m14s
build configuration / build_web02 (push) Successful in 51s
lint / check (push) Successful in 23s
build configuration / build_rescue01 (push) Successful in 47s
build configuration / build_web01 (push) Successful in 1m32s
Add keys/catvayor.keys (#83)
Reviewed-on: #83
Co-authored-by: katvayor <catvayor@katvayor.net>
Co-committed-by: katvayor <catvayor@katvayor.net>
2024-04-04 12:49:28 +02:00

60 lines
1 KiB
Nix

/*
To add a new member add an attribute to `members`
Then add the key to the required groups.
*/
{
members = {
mdebray = {
name = "Maurice Debray";
email = "maurice.debray@dgnum.eu";
};
thubrecht = {
name = "Tom Hubrecht";
email = "tom.hubrecht@dgnum.eu";
};
raito = {
name = "Ryan Lahfa";
email = "ryan@dgnum.eu";
};
jemagius = {
name = "Jean-Marc Gailis";
email = "jm@dgnum.eu";
};
luj = {
name = "Julien Malka";
email = "luj@dgnum.eu";
};
catvayor = {
name = "Lubin Bailly";
email = "catvayor@dgnum.eu";
};
};
groups = {
# members of this group are root on all nodes
root = [
"thubrecht"
"raito"
"mdebray"
"luj"
];
# members of this group will have root access on the installation isos
iso = [
"thubrecht"
"mdebray"
"raito"
"luj"
];
# members of this group can access netbox's secret
netbox = [ ];
bureau = [ "gdd" ];
};
}