16 lines
255 B
Nix
16 lines
255 B
Nix
{pkgs, ...}:
|
|
{
|
|
|
|
programs.thunderbird = {
|
|
enable = true;
|
|
profiles = {
|
|
default.isDefault = true;
|
|
};
|
|
settings = {
|
|
"privacy.donottrackheader.enabled" = true;
|
|
# TODO
|
|
};
|
|
};
|
|
|
|
}
|