diff --git a/home/editors/emacs.nix b/home/editors/emacs.nix index 5b56abf..dfff555 100644 --- a/home/editors/emacs.nix +++ b/home/editors/emacs.nix @@ -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]; }; }