all repos — nixfiles @ faedc3b7ef237c73a400ca7ac9fcef35ffca18b8

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

Use a single version of emacs
Alan Pearce alan@alanpearce.eu
Tue, 17 Sep 2019 15:11:48 +0200
commit

faedc3b7ef237c73a400ca7ac9fcef35ffca18b8

parent

a0fe1ef8872003557a4f527395fc9e09379e5ade

2 files changed, 5 insertions(+), 2 deletions(-)

jump to
M modules/user-interface.nixmodules/user-interface.nix
@@ -35,6 +35,9 @@ { programs.browserpass.enable = true;   documentation.info.enable = true;
   nixpkgs.config.firefox.enableOfficialBranding = true;
 
+  nixpkgs.config.packageOverrides = pkgs: {
+    myEmacs = emacsPackage;
+  };
   environment.systemPackages = with pkgs; [
     aria2
     firefox
@@ -44,7 +47,7 @@ epdfview     geeqie
 
     fish # for emacs-fish-completion
-    emacsPackage
+    myEmacs
     editorScript
 
     xst # st, but with support for XResources
M satoshipad.nixsatoshipad.nix
@@ -54,7 +54,7 @@ path = with pkgs; [ python3Packages.keyring ];     serviceConfig = {
       Type = "oneshot";
       ExecStart = "${pkgs.isync}/bin/mbsync -Va";
-      ExecStartPost = "${pkgs.unstable.emacs}/bin/emacsclient -e (mu4e-update-index)";
+      ExecStartPost = "${pkgs.myEmacs}/bin/emacsclient -e (mu4e-update-index)";
     };
   };