mimetypes

This commit is contained in:
Kopatz
2025-11-06 16:59:13 +01:00
parent 6d040237a2
commit b53bd83006
2 changed files with 62 additions and 1 deletions

View File

@@ -56,4 +56,20 @@ in
};
home.packages = with pkgs; [ nixfmt-rfc-style ]; # nixd config option to set nixpkgs-fmt should work, but it doesn't
programs.nixvim = merged;
xdg.desktopEntries = {
neovim = {
name = "Neovim";
exec = "kitty nvim";
icon = "nvim";
type = "Application";
categories = [
"Utility"
"TextEditor"
];
mimeType = [
"text/markdown"
"text/plain"
];
};
};
}