From fd48d6af9a3eaf7a12bb8560048161d849b4d2b0 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Fri, 24 Oct 2025 11:52:08 +1000 Subject: [PATCH] add Mozilla Thunderbird --- homes/me/default.nix | 1 + homes/modules/apps/thunderbird.nix | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 homes/modules/apps/thunderbird.nix diff --git a/homes/me/default.nix b/homes/me/default.nix index d37a8e9..227ae21 100755 --- a/homes/me/default.nix +++ b/homes/me/default.nix @@ -17,6 +17,7 @@ ../modules/btop.nix ../modules/term/foot.nix ../modules/firefox.nix + ../modules/apps/thunderbird.nix #../modules/wm/hypr/hypridle.nix ../modules/wm/hypr/hyprlock.nix diff --git a/homes/modules/apps/thunderbird.nix b/homes/modules/apps/thunderbird.nix new file mode 100644 index 0000000..dd4f861 --- /dev/null +++ b/homes/modules/apps/thunderbird.nix @@ -0,0 +1,10 @@ +{...}: { + programs.thunderbird = { + enable = true; + profiles = { + "me" = { + isDefault = true; + }; + }; + }; +}