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
Executable File

{
xdg.mimeApps = {
enable = true;
defaultApplications = {
"inode/directory" = "org.kde.dolphin.desktop";
"text/plain" = "nvim.desktop";
"image/jpeg" = "imv.desktop";
"image/png" = "imv.desktop";
"image/svg" = "imv.desktop";
"x-scheme-handler/nxm" = "modorganizer2-nxm-handler.desktop";
};
};
}