21 lines
317 B
Nix
21 lines
317 B
Nix
let
|
|
members = {
|
|
mdebray = {
|
|
name = "Maurice Debray";
|
|
email = "maurice.debray@dgnum.eu";
|
|
};
|
|
|
|
thubrecht = {
|
|
name = "Tom Hubrecht";
|
|
email = "tom.hubrecht@dgnum.eu";
|
|
};
|
|
};
|
|
|
|
groups = {
|
|
root = [ "thubrecht" ];
|
|
|
|
web = [ "mdebray" ];
|
|
};
|
|
in
|
|
|
|
{ inherit groups members; }
|