30 lines
590 B
Nix
30 lines
590 B
Nix
{...}: {
|
|
xdg.desktopEntries."nsxiv-rifle" = {
|
|
exec = "nsxiv-rifle %F";
|
|
icon = "nsxiv";
|
|
name = "nsxiv-rifle";
|
|
mimeType = [
|
|
"image/bmp"
|
|
"image/gif"
|
|
"image/jpeg"
|
|
"image/jpg"
|
|
"image/png"
|
|
"image/tiff"
|
|
"image/x-bmp"
|
|
"image/x-portable-anymap"
|
|
"image/x-portable-bitmap"
|
|
"image/x-portable-graymap"
|
|
"image/x-tga"
|
|
"image/x-xpixmap"
|
|
"image/webp"
|
|
"image/heic"
|
|
"image/svg+xml"
|
|
"application/postscript"
|
|
"image/jp2"
|
|
"image/jxl"
|
|
"image/avif"
|
|
"image/heif"
|
|
];
|
|
};
|
|
}
|