From f9e87d2d0a59700a3cd908aa5780282280820748 Mon Sep 17 00:00:00 2001 From: xezo360hye Date: Tue, 3 Sep 2024 01:28:10 +0300 Subject: [PATCH] feat(home): add thunderbird module, included in common.nix --- home/common.nix | 1 + home/modules/thunderbird/default.nix | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 home/modules/thunderbird/default.nix diff --git a/home/common.nix b/home/common.nix index 69e51f5..c7b652d 100644 --- a/home/common.nix +++ b/home/common.nix @@ -1,6 +1,7 @@ { pkgs, ... }: { imports = [ + ./modules/thunderbird ./modules/nethack ./modules/firefox ./modules/neovim diff --git a/home/modules/thunderbird/default.nix b/home/modules/thunderbird/default.nix new file mode 100644 index 0000000..0bbde94 --- /dev/null +++ b/home/modules/thunderbird/default.nix @@ -0,0 +1,12 @@ +{ + programs.thunderbird = { + enable = true; + settings = { + "privacy.donottrackheader.enabled" = true; + }; + + profiles.default = { + isDefault = true; + }; + }; +}