Added thunderbird

This commit is contained in:
2024-08-01 12:44:07 +02:00
parent b2b37b0537
commit e2cd752b7a
3 changed files with 69 additions and 0 deletions

View File

@@ -3,6 +3,8 @@
{
home.packages = with pkgs; [
unstable.devenv
unstable.surrealist
cloc
];
programs.direnv = {

View File

@@ -0,0 +1,63 @@
{ pkgs, ... }:
{
programs.thunderbird = {
enable = true;
package = pkgs.unstable.thunderbird;
profiles = {
default = {
isDefault = true;
};
};
};
accounts.email.accounts = {
ziggo = {
imap = {
host = "imap.ziggo.nl";
port = 993;
tls = {
enable = true;
};
};
smtp = {
host = "smtp.ziggo.nl";
port = 587;
tls = {
enable = true;
useStartTls = true;
};
};
address = "timo.boomers@ziggo.nl";
realName = "Timo Boomers";
userName = "timo.boomers@ziggo.nl";
primary = true;
thunderbird.enable = true;
thunderbird.profiles = [ "default" ];
};
xeovalyte = {
imap = {
host = "mail.xeovalyte.dev";
port = 993;
tls = {
enable = true;
};
};
smtp = {
host = "mail.xeovalyte.dev";
port = 587;
tls = {
enable = true;
useStartTls = true;
};
};
address = "timo@xeovalyte.dev";
aliases = [ "me@xeovalyte.dev" "contact@xeovalyte.dev" ];
realName = "Timo Boomers";
userName = "me@xeovalyte.dev";
primary = false;
thunderbird.enable = true;
thunderbird.profiles = [ "default" ];
};
};
}