33 lines
734 B
Nix
33 lines
734 B
Nix
{
|
|
repo = {
|
|
account = rec {
|
|
name = "kiri";
|
|
realName = "Jelle Spreeuwenberg";
|
|
homeDirectory = "/home/${name}";
|
|
nixosConfigurationPath = "${homeDirectory}/.config/nixos";
|
|
|
|
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";
|
|
};
|
|
};
|
|
|
|
primaryEmail = emails.personal;
|
|
};
|
|
};
|
|
}
|