10 lines
246 B
Nix
10 lines
246 B
Nix
|
{ ... }: {
|
||
|
xdg.mimeApps.defaultApplications = {
|
||
|
"inode/directory" = ["pcmanfm-qt.desktop"];
|
||
|
"text/plain" = ["nvim.desktop"];
|
||
|
"image/png" = ["imv.desktop"];
|
||
|
"image/jpeg" = ["imv.desktop"];
|
||
|
"video/*" = ["mpv.desktop"];
|
||
|
};
|
||
|
}
|