diff options
author | Griffin Smith <root@gws.fyi> | 2020-05-11T15·15-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2020-05-11T15·15-0400 |
commit | 3e8f0eeeec8708f9e5521333bc6884de8fa2067b (patch) | |
tree | e1dd803e7743b1b9ab1b3b60aa580c966d4fc324 /home/modules/emacs.nix | |
parent | 765e7b5cc6cea6c8bbb47c82db4addcd65eea64d (diff) |
Use emacsUnstable (27)
also doing this in home rather than system
Diffstat (limited to 'home/modules/emacs.nix')
-rw-r--r-- | home/modules/emacs.nix | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/home/modules/emacs.nix b/home/modules/emacs.nix index 80116312e945..71d7cbf70efe 100644 --- a/home/modules/emacs.nix +++ b/home/modules/emacs.nix @@ -29,10 +29,24 @@ in { ispell + ripgrep + coreutils + fd + clang gnutls ]; - programs.emacs.enable = true; + nixpkgs.overlays = [ + (import (builtins.fetchTarball { + url = "https://github.com/nix-community/emacs-overlay/archive/54afb061bdd12c61bbfcc13bad98b7a3aab7d8d3.tar.gz"; + sha256 = "0hrbg65d5h0cb0nky7a46md7vlvhajq1hf0328l2f7ln9hznqz6j"; + })) + ]; + + programs.emacs = { + enable = true; + package = pkgs.emacsUnstable; + }; impure.clonedRepos = { orgClubhouse = { |