nix/modules/system/xdg/default.nix
2024-10-04 18:30:45 +02:00

29 lines
622 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"];
};
};
userDirs = {
enable = true;
desktop = "~/media/pic/screen";
download = "~/dl";
};
};
}