NixOS-Config/modules/home/settings/xdg/defaults/default.nix

12 lines
293 B
Nix
Raw Normal View History

2024-11-24 09:55:02 -05:00
{ ... }:
{
xdg.mimeApps.defaultApplications = {
"inode/directory" = [ "pcmanfm-qt.desktop" ];
"text/plain" = [ "nvim.desktop" ];
"image/png" = [ "imv.desktop" ];
"image/jpeg" = [ "imv.desktop" ];
"image/jp2" = [ "imv.desktop" ];
"video/*" = [ "mpv.desktop" ];
};
}