Price Hiller
3d25c09b48
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m4s
22 lines
618 B
Nix
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 " ];
|
|
};
|
|
};
|
|
};
|
|
}
|