Changed emacs package

This commit is contained in:
William 2023-08-16 11:57:42 -03:00
parent 23384c6df6
commit c4c2a1ba80
3 changed files with 27 additions and 2 deletions

View file

@ -25,4 +25,29 @@
"/var/run/current-system/sw/share/applications/koi.desktop";
};
};
xdg.desktopEntries.emacsd = {
name = "Emacs";
exec = "${config.services.emacs.package}/bin/emacsclient -c";
icon = "emacs";
comment = "More than just a text editor";
genericName = "Text Editor";
mimeType = [
"text/english"
"text/plain"
"text/x-makefile"
"text/x-c++hdr"
"text/x-c++src"
"text/x-chdr"
"text/x-csrc"
"text/x-java"
"text/x-moc"
"text/x-pascal"
"text/x-tcl"
"text/x-tex"
"application/x-shellscript"
"text/x-c"
"text/x-c++"
];
categories = [ "Development" "TextEditor" ];
};
}