diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-04-22T11·18+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-04-22T11·18+0200 |
commit | 7c581e4f645630d097af65043bcf694852cb1bb3 (patch) | |
tree | 46bb0cc78071466545bbbe002a2b30d72e3cba78 /emacs.nix | |
parent | 79ce1dc6939913657f392a05297a23e31c1e25b0 (diff) |
feat(emacs): Pin EXWM to 0.18
There are several severe regressions from EXWM 0.15 to EXWM 0.17. This commit pins the version to the somewhat newer 0.18 in hope that it resolves those issues again.
Diffstat (limited to 'emacs.nix')
-rw-r--r-- | emacs.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/emacs.nix b/emacs.nix index 6b7b2bd71166..08bb346771e7 100644 --- a/emacs.nix +++ b/emacs.nix @@ -1,6 +1,6 @@ # Derivation for Emacs configured with the packages that I need: -{ pkgs ? import <nixos> {} }: +{ pkgs }: let emacsWithPackages = with pkgs; (emacsPackagesNgGen emacs).emacsWithPackages; sly = with pkgs; emacsPackagesNg.melpaBuild { @@ -59,13 +59,15 @@ nix-mode = with pkgs; emacsPackagesNg.melpaBuild { }; in emacsWithPackages(epkgs: + # Pinned packages: + (with pkgs.pinnedEmacs; [ exwm ]) ++ + # Actual ELPA packages (the enlightened!) (with epkgs.elpaPackages; [ ace-window adjust-parens avy company - exwm pinentry rainbow-mode undo-tree |