dots/users/price/conf/thunderbird/default.nix
Price Hiller 3d25c09b48
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m4s
fix(hm/price): add icon for thunderbird desktop entry
2024-08-29 22:56:04 -05:00

22 lines
618 B
Nix

{ pkgs, ... }:
{
home.packages = [ pkgs.thunderbird ];
xdg = {
desktopEntries.thunderbird = {
name = "thunderbird";
exec = "${pkgs.thunderbird}/bin/thunderbird";
icon = "${pkgs.thunderbird}/share/icons/hicolor/128x128/apps/thunderbird.png";
};
mimeApps = {
associations.added = {
"x-scheme-handler/mailto" = [ "thunderbird.desktop " ];
"text/calendar" = [ "thunderbird.desktop " ];
};
defaultApplications = {
"x-scheme-handler/mailto" = [ "thunderbird.desktop " ];
"text/calendar" = [ "thunderbird.desktop " ];
};
};
};
}