thunderbird: move from module to user config

This commit is contained in:
2025-03-16 14:39:55 +00:00
parent 5d1f6aca74
commit 85ecd4a72a
5 changed files with 28 additions and 43 deletions

View File

@ -5,5 +5,6 @@
{
imports = [
./firefox.nix
./thunderbird.nix
];
}

View File

@ -0,0 +1,27 @@
{
self,
...
}:
{
home.file.".thunderbird/Default/chrome/thunderbird-gnome-theme".source =
self.inputs.thunderbird-gnome-theme;
home.programs.thunderbird = {
enable = true;
profiles.Default = {
isDefault = true;
userChrome = ''
@import "thunderbird-gnome-theme/userChrome.css";
'';
userContent = ''
@import "thunderbird-gnome-theme/userContent.css";
'';
settings = {
## GNOME theme
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
"svg.context-properties.content.enabled" = true;
};
};
};
}