Added: Geary

This commit is contained in:
2025-04-06 18:13:47 +02:00
parent 92e42f092d
commit 2cca48e010
3 changed files with 5 additions and 36 deletions

View File

@@ -0,0 +1,4 @@
{ pkgs, ... }:
{
programs.geary.enable = true;
}

View File

@@ -1,36 +0,0 @@
{ pkgs, ... }:
{
# Install Thunderbird
home.packages = with pkgs; [
thunderbird
];
# Configure Thunderbird using profiles.ini
programs.thunderbird.enable = true;
programs.thunderbird.profiles."default" = {
isDefault = true;
settings = {
mail.check_default_mail = false;
# Add other Thunderbird settings here if needed
};
accounts = [
{
name = "Phil Keier (Hotmail)";
server = "imap-mail.outlook.com";
user = "phil.keier@hotmail.com";
port = 993;
ssl = true;
type = "imap";
identity = {
name = "Phil Keier";
email = "phil.keier@hotmail.com";
smtpServer = "smtp-mail.outlook.com";
smtpPort = 587;
smtpSsl = true;
smtpUsername = "phil.keier@hotmail.com";
};
}
];
};
}