Enable wayland support for emacs.

This unfortunately means pinning to a specific version (or using 3rd party emacs-overlay).
This commit is contained in:
Tom Alexander 2024-12-20 15:30:51 -05:00
parent fe1033fa4b
commit 0aad0c39f4
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -29,7 +29,7 @@ INIT_SCRIPT=$(cat <<EOF
EOF
)
exec ${pkgs.emacs-gtk}/bin/emacs -q --eval "$INIT_SCRIPT" "''${@}"
exec ${pkgs.emacs29-pgtk}/bin/emacs -q --eval "$INIT_SCRIPT" "''${@}"
'';
in
{
@ -37,7 +37,7 @@ in
environment.systemPackages = with pkgs; [
plainmacs
emacs-gtk
emacs29-pgtk
clang # To compile tree-sitter grammars
];