modules step 1

This commit is contained in:
Odweta
2026-01-11 18:11:54 +01:00
parent 968df831c7
commit dd5b4fe5ed
9 changed files with 305 additions and 198 deletions
+12
View File
@@ -0,0 +1,12 @@
{ pkgs, ... }:
{
xdg.mimeApps.defaultApplications = {
"text/plain" = [ "neovide.desktop" ];
"applications/pdf" = [ "zathura.desktop" ];
"image/*" = [ "sxiv.desktop" ];
"video/png" = [ "mpv.desktop" ];
"video/jpg" = [ "mpv.desktop" ];
"video/*" = [ "mpv.desktop" ];
};
}