nix-config/home/mime-apps.nix
2025-01-26 07:28:16 -05:00

20 lines
583 B
Nix

{
xdg.mimeApps = {
enable = true;
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";
"image/webp" = "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";
};
};
}