commit af38f4dca635abe4096d3cb832ae907aaa943f13 parent 168673ea33bfe8c8c924c31651d9b902512b21cb Author: Vincent Demeester <vincent@sbr.pm> Date: Mon, 30 Sep 2024 10:42:28 +0200 tools/emacs: remove withGTK2… … and add kubed (to test) Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
M | users/vincent/dev/emacs.nix | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/users/vincent/dev/emacs.nix b/users/vincent/dev/emacs.nix @@ -112,6 +112,7 @@ let ibuffer-vc jinx json-mode + kubed ligature macrostep magit @@ -197,7 +198,7 @@ in programs.emacs = { enable = true; # FIXME: choose depending on the enabled modules - package = (pkgs.emacs29.override { withTreeSitter = true; withNativeCompilation = true; withPgtk = true; withWebP = true; withGTK3 = true; withGTK2 = false; withSQLite3 = true; }); + package = (pkgs.emacs29.override { withTreeSitter = true; withNativeCompilation = true; withPgtk = true; withWebP = true; withGTK3 = true; withSQLite3 = true; }); # package = (pkgs.emacs-pgtk.override { withGTK3 = true; withGTK2 = false; }); extraPackages = myExtraPackages; };