This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/xdg-mime.nix

17 lines
349 B
Nix
Raw Normal View History

{
xdg.mimeApps = {
enable = true;
defaultApplications = {
"inode/directory" = "org.kde.dolphin.desktop";
"text/plain" = "nvim.desktop";
2023-08-26 10:32:53 +01:00
"image/jpeg" = "imv.desktop";
"image/png" = "imv.desktop";
"image/svg" = "imv.desktop";
"x-scheme-handler/nxm" = "modorganizer2-nxm-handler.desktop";
};
};
}