Swap evolution for thunderbird

This commit is contained in:
Natsu Kagami 2023-06-06 21:27:19 +02:00
parent 4c913db2fb
commit 286f296de4
Signed by: nki
GPG key ID: 7306B3D3C3AD6E51
2 changed files with 9 additions and 5 deletions

View file

@ -144,7 +144,7 @@ in
{ command = "systemctl --user restart waybar"; always = true; }
# Startup programs
{ command = "${cfg.browser}"; }
{ command = "evolution"; } # Rely on system package with plugins
{ command = "thunderbird"; } # Rely on system package with plugins
{ command = "env PYTHONPATH=$(python -m site --user-site) ${pkgs.ulauncher}/bin/ulauncher --hide-window --no-window-shadow"; }
] ++ (if cfg.discord != null then [
{ command = "${cfg.discord}"; }
@ -277,7 +277,7 @@ in
{ class = "^((d|D)iscord|((A|a)rm(c|C)ord))$"; }
];
"📧 Email" = [
{ app_id = "evolution"; }
{ app_id = "thunderbird"; }
];
};
# Commands

View file

@ -221,12 +221,16 @@ in
hardware.opengl.driSupport = true;
hardware.opengl.driSupport32Bit = !pkgs.stdenv.isAarch64; # For 32 bit applications
# Email
programs.evolution = {
programs.thunderbird = {
enable = true;
plugins = with pkgs; [ evolution-ews ]; # For @epfl.ch and @uwaterloo.ca emails
profiles.default = {
isDefault = true;
};
settings = {
"privacy.donottrackheader.enabled" = true;
};
};
## Services
# gnome-keyring for storing keys
services.gnome.gnome-keyring.enable = true;