refactor: extract users

This commit is contained in:
2026-04-25 01:28:28 +02:00
parent 0500aab3cb
commit 16712777dc
6 changed files with 74 additions and 85 deletions
+20
View File
@@ -0,0 +1,20 @@
{ config, ... }:
{
repo.accounts.ergon = {
realName = "Jelle Spreeuwenberg";
sourceControl.projectScope = "work";
emails = {
personal = {
address = "mail@jelles.net";
scope = "personal";
type = "mxrouting";
};
work = {
address = "jelle.spreeuwenberg@yookr.org";
primary = true;
scope = "work";
type = "office365";
};
};
};
}