Added mimetypes

This commit is contained in:
Asdam9
2026-08-05 08:54:33 +02:00
parent b79cf86f97
commit fd4e4757b9

View File

@@ -0,0 +1,15 @@
{
flake.nixosModules.devenv = {pkgs, ...}: {
environment.systemPackages = [
];
xdg.mime.defaultApplications = {
"application/pdf" = "zathura.desktop";
"image/*" = "sxiv.desktop";
"text/*" = "neovim.desktop";
"text/html" = "firefox.desktop";
"video/*" = "mpv.desktop";
"audio/*" = "mpv.desktop";
};
};
}