Use a single version of emacs
Alan Pearce alan@alanpearce.eu
Tue, 17 Sep 2019 15:11:48 +0200
2 files changed, 5 insertions(+), 2 deletions(-)
M modules/user-interface.nix → modules/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.nix → satoshipad.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)"; }; };