mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
25 lines
417 B
Nix
25 lines
417 B
Nix
rec {
|
||
thunderbirdProfile = "donnervogel";
|
||
pronouns = builtins.concatStringsSep " · " [
|
||
"er"
|
||
"he"
|
||
"is"
|
||
"οὗτος"
|
||
"هو"
|
||
"ⲛ̄ⲧⲟϥ"
|
||
"он"
|
||
"han"
|
||
"सः"
|
||
"huwwe"
|
||
];
|
||
defaults = {
|
||
thunderbird = {
|
||
enable = true;
|
||
profiles = [thunderbirdProfile];
|
||
};
|
||
aerc.enable = true;
|
||
realName = "Kierán Meinhardt";
|
||
folders.inbox = "INBOX";
|
||
};
|
||
}
|