1
0
Fork 0

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
1 changed files with 4 additions and 2 deletions

View File

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