mime types for image viewer

This commit is contained in:
Andreas Zweili 2022-01-21 22:29:38 +01:00
parent 77bca0472d
commit 28bb7a9c4b
1 changed files with 4 additions and 4 deletions

View File

@ -11,12 +11,12 @@ in
xdg.mimeApps = {
enable = true;
associations.added = {
"image/png" = ["org.gnome.eog.desktop"];
"image/jpeg" = ["org.gnome.eog.desktop"];
"image/png" = [ "org.gnome.eog.desktop" ];
"image/jpeg" = [ "org.gnome.eog.desktop" ];
};
defaultApplications = {
"image/png" = ["org.gnome.eog.desktop"];
"image/jpeg" = ["org.gnome.eog.desktop"];
"image/png" = [ "org.gnome.eog.desktop" ];
"image/jpeg" = [ "org.gnome.eog.desktop" ];
};
};
};