Added thunderbird
This commit is contained in:
@@ -3,6 +3,8 @@
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
unstable.devenv
|
||||
unstable.surrealist
|
||||
cloc
|
||||
];
|
||||
|
||||
programs.direnv = {
|
||||
|
63
modules/home/gui/thunderbird.nix
Normal file
63
modules/home/gui/thunderbird.nix
Normal 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" ];
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user