homelab/machines/auth/bootstrap/group-configs.nix
2025-07-16 02:10:31 +02:00

14 lines
259 B
Nix

{config, ...}: {
sops.templates."default-groups.json" = {
content = ''
{
"name": "git-user"
}
{
"name": "git-admin"
}
'';
path = "/bootstrap/group-configs/default-groups.json";
owner = "lldap";
};
}