mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 00:03:55 +01:00
32a95af4cd
Note that the nvim.desktop file has to be manually patched for this to work.
17 lines
464 B
Nix
17 lines
464 B
Nix
{
|
|
xdg.mimeApps = {
|
|
enable = true;
|
|
|
|
defaultApplications = {
|
|
"text/markdown" = "nvim.desktop";
|
|
"text/plain" = "nvim.desktop";
|
|
"image/png" = "pqiv.desktop";
|
|
"image/jpeg" = "pqiv.desktop";
|
|
"image/gif" = "org.qutebrowser.qutebrowser.desktop";
|
|
"application/x-wine-extension-osz" = "osu-stable.desktop";
|
|
"x-scheme-handler/http" = "librewolf.desktop";
|
|
"x-scheme-handler/https" = "librewolf.desktop";
|
|
};
|
|
};
|
|
}
|