gthumb: add svg mime association

This commit is contained in:
Colin 2023-07-21 20:00:45 +00:00
parent bd16aaa884
commit 94bae57411

View File

@ -3,8 +3,11 @@
sane.programs.gthumb = {
# compile without webservices to avoid the expensive webkitgtk dependency
package = pkgs.gthumb.override { withWebservices = false; };
mime.associations."image/heif" = "org.gnome.gThumb.desktop"; # apple codec
mime.associations."image/png" = "org.gnome.gThumb.desktop";
mime.associations."image/jpeg" = "org.gnome.gThumb.desktop";
mime.associations = {
"image/heif" = "org.gnome.gThumb.desktop"; # apple codec
"image/png" = "org.gnome.gThumb.desktop";
"image/jpeg" = "org.gnome.gThumb.desktop";
"image/svg+xml" = "org.gnome.gThumb.desktop";
};
};
}