21 lines
425 B
Nix
21 lines
425 B
Nix
{ 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";
|
|
};
|
|
};
|
|
};
|
|
}
|