forked from the-distro/infra
46 lines
736 B
Nix
46 lines
736 B
Nix
{ lib, ... }:
|
|
let
|
|
inherit (lib) genAttrs;
|
|
in
|
|
# Note: to add somefew in this list.
|
|
# Ensure their SSH key is already in common/ssh-keys.nix with
|
|
# the same username for here, so that the keys is automatically added.
|
|
{
|
|
bagel.groups = {
|
|
floral-infra.members = [
|
|
"delroth"
|
|
"emilylange"
|
|
"hexchen"
|
|
"jade"
|
|
"janik"
|
|
"k900"
|
|
"maxine"
|
|
"raito"
|
|
"thubrecht"
|
|
"winter"
|
|
"yuka"
|
|
"ckie"
|
|
];
|
|
|
|
lix-infra.members = [
|
|
"raito"
|
|
"hexchen"
|
|
"jade"
|
|
];
|
|
};
|
|
bagel.users = genAttrs [
|
|
"delroth"
|
|
"emilylange"
|
|
"hexchen"
|
|
"jade"
|
|
"janik"
|
|
"k900"
|
|
"maxine"
|
|
"raito"
|
|
"thubrecht"
|
|
"winter"
|
|
"yuka"
|
|
"ckie"
|
|
] (name: {});
|
|
}
|