aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configuration.nix1
-rw-r--r--modules/thunderbird/default.nix32
2 files changed, 0 insertions, 33 deletions
diff --git a/configuration.nix b/configuration.nix
index 41ea1d5..e125469 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -10,7 +10,6 @@
./modules/torrent.nix
./modules/work.nix
./modules/keyboard
- ./modules/thunderbird
./modules/clamav.nix
./modules/lockscreen.nix
./modules/sound
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;
- };
-}