2024-08-29 22:31:20 -05:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
home.packages = [ pkgs.thunderbird ];
|
|
|
|
xdg = {
|
|
|
|
desktopEntries.thunderbird = {
|
|
|
|
name = "thunderbird";
|
|
|
|
exec = "${pkgs.thunderbird}/bin/thunderbird";
|
2024-08-29 22:56:04 -05:00
|
|
|
icon = "${pkgs.thunderbird}/share/icons/hicolor/128x128/apps/thunderbird.png";
|
2024-08-29 22:31:20 -05:00
|
|
|
};
|
|
|
|
mimeApps = {
|
|
|
|
associations.added = {
|
|
|
|
"x-scheme-handler/mailto" = [ "thunderbird.desktop " ];
|
|
|
|
"text/calendar" = [ "thunderbird.desktop " ];
|
|
|
|
};
|
|
|
|
defaultApplications = {
|
|
|
|
"x-scheme-handler/mailto" = [ "thunderbird.desktop " ];
|
|
|
|
"text/calendar" = [ "thunderbird.desktop " ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|