emacs vterm + pgtk

This commit is contained in:
xunuwu 2024-09-26 02:26:30 +02:00
parent 7f44085e34
commit c2f8b07b71
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI

View file

@ -1,6 +1,7 @@
{pkgs, ...}: {
programs.emacs = {
enable = true;
package = pkgs.emacs-gtk; # uses xwayland, use pgtk for native wayland or pkgs.emacs if using daemon
package = pkgs.emacs29-pgtk; # uses xwayland, use pgtk for native wayland or pkgs.emacs if using daemon
extraPackages = e: [e.vterm];
};
}