infrastructure/meta/members.nix
2023-05-22 17:18:57 +02:00

26 lines
411 B
Nix

let
members = {
mdebray = {
name = "Maurice Debray";
email = "maurice.debray@dgnum.eu";
};
thubrecht = {
name = "Tom Hubrecht";
email = "tom.hubrecht@dgnum.eu";
};
raito = {
name = "Raito Bezarius";
email = "raito@dgnume.eu";
};
};
groups = {
root = [ "thubrecht" ];
web = [ "mdebray" "raito" ];
};
in
{ inherit groups members; }