diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-07-03 11:21:33 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-07-03 11:21:33 +0530 |
| commit | b83f4b93e48797264859804de3932abbacabe566 (patch) | |
| tree | f5ede2e47462c2b688ee5778aa1c2265506e311d /modules | |
| parent | 55770604dbecdcb765189553e010aa18f9828f14 (diff) | |
| download | nixos-config-b83f4b93e48797264859804de3932abbacabe566.tar.gz nixos-config-b83f4b93e48797264859804de3932abbacabe566.zip | |
Remove thunderbird
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/thunderbird/default.nix | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/modules/thunderbird/default.nix b/modules/thunderbird/default.nix deleted file mode 100644 index b4ba152..0000000 --- a/modules/thunderbird/default.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ config, pkgs, lib, ... }: -let - thunderbird = pkgs.thunderbird-latest; - - extensions = [ - # Theme - # "https://addons.thunderbird.net/thunderbird/downloads/latest/dracula-theme-for-thunderbird/addon-987962-latest.xpi" - # "https://addons.thunderbird.net/thunderbird/downloads/latest/luminous-matter/addon-988120-latest.xpi" - "https://addons.thunderbird.net/thunderbird/downloads/latest/dark-black-theme/addon-988343-latest.xpi" - - "https://addons.thunderbird.net/thunderbird/downloads/latest/grammar-and-spell-checker/addon-988138-latest.xpi" - # "https://addons.thunderbird.net/thunderbird/downloads/latest/external-editor-revived/addon-988342-latest.xpi" - ]; - - policies = { - Extensions.Install = extensions; - }; - - preferences = { - # "general.useragent.override" = ""; - # "mail.spellcheck.inline" = true; - "privacy.donottrackheader.enabled" = true; - }; -in { - programs.thunderbird = { - enable = true; - package = thunderbird; - policies = policies; - preferencesStatus = "default"; - preferences = preferences; - }; -} |
