➕ (home) add thunderbird program
This commit is contained in:
parent
65d68cb840
commit
ca692d924d
26
home/thunderbird/default.nix
Normal file
26
home/thunderbird/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{pkgs, ...}: let
|
||||||
|
user_agent = "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36";
|
||||||
|
in {
|
||||||
|
programs.thunderbird = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.thunderbird;
|
||||||
|
|
||||||
|
profiles = {
|
||||||
|
laurent = {
|
||||||
|
isDefault = true;
|
||||||
|
userChrome = ''
|
||||||
|
#unifiedToolbarContent {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
"general.useragent.override" = user_agent;
|
||||||
|
"privacy.donottrackheader.enabled" = true;
|
||||||
|
"permissions.default.desktop-notification" = 1;
|
||||||
|
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue