69 lines
1.4 KiB
Nix
69 lines
1.4 KiB
Nix
{ ... }:
|
|
let
|
|
kiri = {
|
|
name = "kiri";
|
|
realName = "Jelle Spreeuwenberg";
|
|
homeDirectory = "/home/kiri";
|
|
terminalPackagePath = [ "kitty" ];
|
|
emails = {
|
|
personal = {
|
|
address = "mail@jelles.net";
|
|
primary = true;
|
|
scope = "personal";
|
|
type = "mxrouting";
|
|
};
|
|
old = {
|
|
address = "mail@jellespreeuwenberg.nl";
|
|
primary = false;
|
|
scope = null;
|
|
type = "mxrouting";
|
|
};
|
|
uni = {
|
|
address = "j.spreeuwenberg@student.tue.nl";
|
|
primary = false;
|
|
scope = null;
|
|
type = "office365";
|
|
};
|
|
work = {
|
|
address = "jelle.spreeuwenberg@yookr.org";
|
|
primary = false;
|
|
scope = "work";
|
|
type = "office365";
|
|
};
|
|
};
|
|
sourceControl = { };
|
|
};
|
|
|
|
ergon = {
|
|
name = "ergon";
|
|
realName = "Jelle Spreeuwenberg";
|
|
homeDirectory = "/home/ergon";
|
|
terminalPackagePath = [ "kitty" ];
|
|
emails = {
|
|
personal = {
|
|
address = "mail@jelles.net";
|
|
primary = false;
|
|
scope = "personal";
|
|
type = "mxrouting";
|
|
};
|
|
work = {
|
|
address = "jelle.spreeuwenberg@yookr.org";
|
|
primary = true;
|
|
scope = "work";
|
|
type = "office365";
|
|
};
|
|
};
|
|
sourceControl = {
|
|
projectScope = "work";
|
|
};
|
|
};
|
|
in
|
|
{
|
|
meta.lib.users = {
|
|
inherit
|
|
ergon
|
|
kiri
|
|
;
|
|
};
|
|
}
|