all repos — nixfiles @ 200b52fdb263cb2cf77856a70dc5fa9d05a6ad51

System and user configuration, managed by nix and home-manager

Revert "Emacs: use commercial-emacs (currently without tree-sitter)"

This reverts commit 4d02c68db272b0585ea3db2aa358ded296dbe7e9.
Alan Pearce alan@alanpearce.eu
Wed, 28 Jun 2023 18:56:36 +0200
commit

200b52fdb263cb2cf77856a70dc5fa9d05a6ad51

parent

14c8b4502d5b15def4ae04d12d3ba43a14a23585

5 files changed, 13 insertions(+), 30 deletions(-)

jump to
M flake.lockflake.lock
@@ -30,13 +30,12 @@ ],         "nixpkgs-stable": "nixpkgs-stable"
       },
       "locked": {
-        "lastModified": 1687957583,
-        "narHash": "sha256-2/8aD9KaEXshIlPKzxlQhNCFxi5PBmQ01O9BRlo/Z/0=",
-        "ref": "refs/heads/commercial-emacs",
-        "rev": "426089576c9fee91c1049307130ea45219db9017",
-        "revCount": 10243,
-        "type": "git",
-        "url": "file:///home/alan/projects/github.com/nix-community/emacs-overlay"
+        "lastModified": 1687688657,
+        "narHash": "sha256-dFSu1p5h2DLOg4Fzjxvqq7ed4213G/Loeh5lAs2AIAA=",
+        "owner": "nix-community",
+        "repo": "emacs-overlay",
+        "rev": "8e81caaf00418200812761c4d0a8c45d9a599180",
+        "type": "github"
       },
       "original": {
         "owner": "nix-community",
M user/emacs/init.eluser/emacs/init.el
@@ -31,6 +31,10 @@ ,@body)) (defun quiet (original-function &rest args)
   (quietly (apply original-function args)))
 
+(use-package benchmark-init
+  :config (progn
+            (add-hook 'after-init-hook #'benchmark-init/deactivate 99)))
+
 ;;; Customize
 
 (setq custom-file (expand-file-name "custom.el" user-emacs-directory))
D user/packages/commercial-emacs/default.nix
@@ -1,21 +0,0 @@-{ lib
-, fetchFromGitHub
-
-, emacs
-
-, withTreeSitter ? true
-}:
-(emacs.override {
-  inherit withTreeSitter;
-  nativeComp = false;
-}).overrideAttrs
-  (old: rec {
-    pname = "commercial-emacs";
-    src = fetchFromGitHub {
-      owner = pname;
-      repo = pname;
-      rev = "50771bb6107e32048187ab93f224cd307c733a33";
-      sha256 = "03r4aqiljqg5g07jlbjp5sld0vg122gpb5ah4mpq2hl239qgxc3b";
-    };
-    patches = [ ];
-  })
M user/settings/darwin.nixuser/settings/darwin.nix
@@ -43,7 +43,7 @@ darwin-zsh-completions     darwin.trash
   ];
 
-  programs.emacs.package = pkgs.commercial-emacs;
+  programs.emacs.package = pkgs.emacs;
 
   home.file.".hushlogin".text = "";
 
M user/settings/emacs.nixuser/settings/emacs.nix
@@ -47,7 +47,7 @@ ]; 
   programs.emacs = {
     enable = true;
-    package = lib.mkDefault (pkgs.commercial-emacs);
+    package = lib.mkDefault (pkgs.emacs.override { withGTK3 = true; });
     overrides = self: super: (
       {
         consult-ghq = super.consult-ghq.overrideAttrs
@@ -97,6 +97,7 @@ [         ace-link
         apheleia
         avy
+        benchmark-init
         capf-autosuggest
         clojure-mode
         company