main
1{
2 den.aspects.desktop.app.imv = {
3 hjem = {pkgs, ...}: {
4 packages = [pkgs.imv];
5
6 xdg.mime-apps.default-applications = {
7 "image/jpeg" = ["imv.desktop"];
8 "image/avif" = ["imv.desktop"];
9 "image/png" = ["imv.desktop"];
10 "image/gif" = ["imv.desktop"];
11 "image/webp" = ["imv.desktop"];
12 "image/svg+xml" = ["imv.desktop"];
13 "image/bmp" = ["imv.desktop"];
14 };
15 };
16 };
17}