44 lines
862 B
Nix
44 lines
862 B
Nix
{
|
|
config,
|
|
...
|
|
}:
|
|
let
|
|
homeModules = config.flake.modules.homeManager;
|
|
in
|
|
{
|
|
meta.lib.accounts.kiri = {
|
|
realName = "Jelle Spreeuwenberg";
|
|
emails = {
|
|
personal = {
|
|
address = "mail@jelles.net";
|
|
primary = true;
|
|
scope = "personal";
|
|
type = "mxrouting";
|
|
};
|
|
old = {
|
|
address = "mail@jellespreeuwenberg.nl";
|
|
scope = null;
|
|
type = "mxrouting";
|
|
};
|
|
uni = {
|
|
address = "j.spreeuwenberg@student.tue.nl";
|
|
scope = null;
|
|
type = "office365";
|
|
};
|
|
work = {
|
|
address = "jelle.spreeuwenberg@yookr.org";
|
|
scope = "work";
|
|
type = "office365";
|
|
};
|
|
};
|
|
sourceControl = { };
|
|
};
|
|
|
|
flake.modules.homeManager.kiri-workstation = {
|
|
imports = [
|
|
homeModules.syncthing
|
|
homeModules.qbittorrent-client
|
|
];
|
|
};
|
|
}
|