Re-enable gtk3 in emacs to run in wayland.

This commit is contained in:
Kevin Baensch 2024-02-21 21:54:32 +01:00
parent cbcdccbdc7
commit 9abd13c26b
Signed by: derped
GPG key ID: C0F1D326C7626543

View file

@ -436,12 +436,14 @@ in {
# use lucid as toolkit; emacs will otherwise crash quite frequently when run in daemon mode # use lucid as toolkit; emacs will otherwise crash quite frequently when run in daemon mode
# https://gitlab.gnome.org/GNOME/gtk/issues/221 # https://gitlab.gnome.org/GNOME/gtk/issues/221
# Enabling again for now as gtk3 is needed for wayland support
machine.pkgsets.emacs.pkgwrap = let machine.pkgsets.emacs.pkgwrap = let
inherit inherit
((pkgs.emacsPackagesFor ((pkgs.emacsPackagesFor
(pkgs.emacs.override { (pkgs.emacs29.override {
withGTK2 = false; withGTK2 = false;
withGTK3 = false; withGTK3 = true;
withPgtk = true;
}))) })))
emacsWithPackages emacsWithPackages
; ;