thunderbird: move from module to user config
This commit is contained in:
@ -5,5 +5,6 @@
|
||||
{
|
||||
imports = [
|
||||
./firefox.nix
|
||||
./thunderbird.nix
|
||||
];
|
||||
}
|
||||
|
27
users/jordan/graphical/thunderbird.nix
Normal file
27
users/jordan/graphical/thunderbird.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user