do the same browser shortening to thunderbird

This commit is contained in:
Bun 2025-05-15 01:15:48 -04:00
parent f797abf235
commit 3978369995

View file

@ -3,12 +3,8 @@
config = lib.mkIf config.home.desktop.enable { config = lib.mkIf config.home.desktop.enable {
programs.thunderbird = { programs.thunderbird = {
enable = config.home.desktop.enable; enable = config.home.desktop.enable;
profiles = { profiles.default = {
Main = {
isDefault = true; isDefault = true;
userContent = ''
*{scrollbar-width:none !important}
'';
settings = { settings = {
"general.autoScroll" = true; "general.autoScroll" = true;
@ -57,8 +53,7 @@
}; };
}; };
}; };
};
home.persistence."${config.xdg.userDirs.extraConfig.XDG_PERSIST_DIR}".directories = [ "browser/.thunderbird" ]; home.persistence."${config.xdg.userDirs.extraConfig.XDG_PERSIST_DIR}".directories = [ "browser/.thunderbird/default" ];
}; };
} }