mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
feat(zaatar): convert to flake feat(tahina, tabula): convert to flake feat(makanek): convert to flake feat(manakish, zaatar): convert to flake feat(ci): build flake systems fix: ci build feat: secrets via submodule foo foo foo
15 lines
266 B
Nix
15 lines
266 B
Nix
{lib, ...}: {
|
|
cock = rec {
|
|
user = "2210@cock.li";
|
|
address = user;
|
|
imap = "mail.cock.li";
|
|
smtp = imap;
|
|
smtpSettings = smtp: "smtp://${smtp}:587";
|
|
folders = {
|
|
drafts = "Drafts";
|
|
sent = "Sent";
|
|
trash = "Trash";
|
|
};
|
|
};
|
|
}
|