feat(home): add thunderbird module, included in common.nix

This commit is contained in:
xezo360hye 2024-09-03 01:28:10 +03:00
parent 31d3e1c2ac
commit f9e87d2d0a
2 changed files with 13 additions and 0 deletions

View File

@ -1,6 +1,7 @@
{ pkgs, ... }:
{
imports = [
./modules/thunderbird
./modules/nethack
./modules/firefox
./modules/neovim

View File

@ -0,0 +1,12 @@
{
programs.thunderbird = {
enable = true;
settings = {
"privacy.donottrackheader.enabled" = true;
};
profiles.default = {
isDefault = true;
};
};
}