17 lines
536 B
Nix
17 lines
536 B
Nix
{
|
|
xdg.mimeApps = {
|
|
enable = true;
|
|
defaultApplications = {
|
|
"text/markdown" = "nvim.desktop";
|
|
"text/plain" = "nvim.desktop";
|
|
"image/png" = "imv.desktop";
|
|
"image/jpeg" = "imv.desktop";
|
|
"image/gif" = "org.qutebrowser.qutebrowser.desktop";
|
|
"x-scheme-handler/http" = "org.qutebrowser.qutebrowser.desktop";
|
|
"x-scheme-handler/https" = "org.qutebrowser.qutebrowser.desktop";
|
|
"text/html" = "org.qutebrowser.qutebrowser.desktop";
|
|
"application/pdf" = "zathura.desktop";
|
|
};
|
|
};
|
|
}
|