From 7f4aa591067303b6f19fb2c318d9e517d9336256 Mon Sep 17 00:00:00 2001 From: albert Date: Tue, 7 May 2024 12:51:52 +0900 Subject: [PATCH] Add thunderbird config --- home-manager/common/software/gui/thunderbird.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 home-manager/common/software/gui/thunderbird.nix diff --git a/home-manager/common/software/gui/thunderbird.nix b/home-manager/common/software/gui/thunderbird.nix new file mode 100644 index 00000000..97cdbe8c --- /dev/null +++ b/home-manager/common/software/gui/thunderbird.nix @@ -0,0 +1,8 @@ +{ ... }: { + programs.thunderbird = { + enable = true; + profiles."Default" = { + isDefault = true; + }; + }; +}