nix-config/home/mime-apps.nix

19 lines
546 B
Nix
Raw Permalink Normal View History

{
xdg.mimeApps = {
enable = true;
2023-06-16 14:51:22 +02:00
defaultApplications = {
"text/html" = "librewolf.desktop";
"text/markdown" = "nvim.desktop";
"text/plain" = "nvim.desktop";
"image/png" = "pqiv.desktop";
"image/jpeg" = "pqiv.desktop";
"image/gif" = "pqiv.desktop";
"application/pdf" = "org.pwmt.zathura-pdf-mupdf.desktop";
"application/x-wine-extension-osz" = "osu-stable.desktop";
"x-scheme-handler/http" = "librewolf.desktop";
"x-scheme-handler/https" = "librewolf.desktop";
};
};
2023-06-09 22:21:52 +02:00
}