diff options
author | Alan Pearce | 2020-01-31 13:28:20 +0100 |
---|---|---|
committer | Alan Pearce | 2020-01-31 13:28:20 +0100 |
commit | fe8325f31f7291c45ec98f9c0d92f6269f0a2342 (patch) | |
tree | f1659771eea9fd073cfc0c587516b681d2bbe51d /user/settings | |
parent | e8f3931738c8d893c659b559d4f4626f18e64644 (diff) | |
download | nixfiles-fe8325f31f7291c45ec98f9c0d92f6269f0a2342.tar.lz nixfiles-fe8325f31f7291c45ec98f9c0d92f6269f0a2342.tar.zst nixfiles-fe8325f31f7291c45ec98f9c0d92f6269f0a2342.zip |
Emacs: use emacs-nix overlay for more up-to-date packages
Diffstat (limited to 'user/settings')
-rw-r--r-- | user/settings/emacs.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/user/settings/emacs.nix b/user/settings/emacs.nix index 00f5bad4..c3d1ca69 100644 --- a/user/settings/emacs.nix +++ b/user/settings/emacs.nix @@ -34,6 +34,12 @@ in imports = [ ../modules/eshell.nix ]; + nixpkgs.overlays = [ + (import (builtins.fetchTarball { + url = https://github.com/nix-community/emacs-overlay/archive/master.tar.gz; + })) + ]; + programs.emacs = { enable = true; eshell = { |