From 2cca48e010a12fe35430db04bf1f401d3ca9022b Mon Sep 17 00:00:00 2001 From: DerGrumpf Date: Sun, 6 Apr 2025 18:13:47 +0200 Subject: [PATCH] Added: Geary --- home/programs/productivity/geary.nix | 4 +++ home/programs/productivity/thunderbird.nix | 36 ---------------------- users/phil/home.nix | 1 + 3 files changed, 5 insertions(+), 36 deletions(-) create mode 100644 home/programs/productivity/geary.nix delete mode 100644 home/programs/productivity/thunderbird.nix diff --git a/home/programs/productivity/geary.nix b/home/programs/productivity/geary.nix new file mode 100644 index 0000000..ce0bd96 --- /dev/null +++ b/home/programs/productivity/geary.nix @@ -0,0 +1,4 @@ +{ pkgs, ... }: +{ + programs.geary.enable = true; +} diff --git a/home/programs/productivity/thunderbird.nix b/home/programs/productivity/thunderbird.nix deleted file mode 100644 index af1827e..0000000 --- a/home/programs/productivity/thunderbird.nix +++ /dev/null @@ -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"; - }; - } - ]; - }; -} diff --git a/users/phil/home.nix b/users/phil/home.nix index 1cb185b..f0f6dc4 100644 --- a/users/phil/home.nix +++ b/users/phil/home.nix @@ -22,6 +22,7 @@ ../../home/programs/productivity/blender.nix ../../home/programs/productivity/slicer.nix ../../home/programs/productivity/okular.nix + ../../home/programs/productivity/geary.nix ../../home/programs/social/element.nix ../../home/programs/social/webcord.nix