Commit af38f4dca635

Vincent Demeester <vincent@sbr.pm>
2024-09-30 10:42:28
tools/emacs: remove withGTK2…
… and add kubed (to test) Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 168673e
Changed files (1)
users
vincent
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;
   };