nix/modules/system/xdg/default.nix
2024-09-14 21:25:34 +02:00

24 lines
521 B
Nix

{...}: {
home-manager.users.joy.xdg = {
desktopEntries = {
hx = {
name = "Helix";
exec = "alacritty -e hx %F";
icon = "Helix";
terminal = false;
type = "Application";
categories = ["Utility" "TextEditor"];
mimeType = ["text/plain"];
};
};
mimeApps = {
enable = true;
defaultApplications = {
"text/plain" = ["hx.desktop"];
"image/*" = ["imv.desktop"];
"video/*" = ["mpv.desktop"];
};
};
};
}