commit b2fbf0da7eea9434cbfed9a5a527c726fd3f34df parent ecc15f6d55dc554320b3d98adf4d04b35d9e87e8 Author: Vincent Demeester <vincent@sbr.pm> Date: Mon, 20 Nov 2023 16:49:16 +0100 tools/emacs: switch to emacs 29… … no need to run emacs from git master branch, all I need is in emacs 29. Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
M | users/vincent/dev/emacs.nix | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/users/vincent/dev/emacs.nix b/users/vincent/dev/emacs.nix @@ -172,8 +172,8 @@ in programs.emacs = { enable = true; # FIXME: choose depending on the enabled modules - package = (pkgs.emacs-pgtk.override { withGTK3 = true; withGTK2 = false; }); - # package = (pkgs.emacsNativeComp.override { withGTK3 = true; withGTK2 = false; withX = true; withXwidgets = true; }); + package = (pkgs.emacs29.override { withTreeSitter = true; withNativeCompilation = true; withPgtk = true; withWebP = true; withGTK3 = true; withGTK2 = false; withSQLite3 = true; }); + # package = (pkgs.emacs-pgtk.override { withGTK3 = true; withGTK2 = false; }); extraPackages = myExtraPackages; }; services.emacs = {