nixos/home/modules/thunderbird/default.nix

13 lines
185 B
Nix

{
programs.thunderbird = {
enable = true;
settings = {
"privacy.donottrackheader.enabled" = true;
};
profiles.default = {
isDefault = true;
};
};
}