diff options
| author | Grigory Shipunov | 2022-10-25 21:40:50 +0200 |
|---|---|---|
| committer | Grigory Shipunov | 2022-10-25 21:40:50 +0200 |
| commit | 846e9e536db9286950120caf2fcd3f02a5b04b9d (patch) | |
| tree | bc863ada696cef6b9ad4f7b7b9d4db4d0c913ff0 /modules | |
| parent | c048d384ce9c647adcbf1cbd1ff0f3422e768369 (diff) | |
no follows for emacs overlay, so bincache works
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/emacs.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/emacs.nix b/modules/emacs.nix index 526ce2c..0df6c08 100644 --- a/modules/emacs.nix +++ b/modules/emacs.nix @@ -1,10 +1,14 @@ -{ pkgs, ... }: +{ pkgs, inputs, ... }: { environment.systemPackages = with pkgs; [ direnv ]; + nixpkgs.overlays = [ + inputs.emacs-overlay.overlay + ]; + programs.zsh.shellInit = '' eval "$(direnv hook zsh)" ''; |
