forked from DGNum/infrastructure
26 lines
411 B
Nix
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; }
|