47 lines
942 B
Nix
47 lines
942 B
Nix
{ lib, ... }:
|
|
let
|
|
accounts = {
|
|
kiri = {
|
|
realName = "Jelle Spreeuwenberg";
|
|
emails = {
|
|
personal = {
|
|
address = "mail@jelles.net";
|
|
primary = true;
|
|
type = "mxrouting";
|
|
};
|
|
old = {
|
|
address = "mail@jellespreeuwenberg.nl";
|
|
type = "mxrouting";
|
|
};
|
|
uni = {
|
|
address = "j.spreeuwenberg@student.tue.nl";
|
|
type = "office365";
|
|
};
|
|
work = {
|
|
address = "jelle.spreeuwenberg@yookr.org";
|
|
type = "office365";
|
|
};
|
|
};
|
|
};
|
|
|
|
ergon = {
|
|
realName = "Jelle Spreeuwenberg";
|
|
emails = {
|
|
personal = {
|
|
address = "mail@jelles.net";
|
|
type = "mxrouting";
|
|
};
|
|
work = {
|
|
address = "jelle.spreeuwenberg@yookr.org";
|
|
primary = true;
|
|
type = "office365";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
in
|
|
{
|
|
repo.accounts = accounts;
|
|
}
|