no follows for emacs overlay, so bincache works

This commit is contained in:
Grigory Shipunov 2022-10-25 21:40:50 +02:00
parent c048d384ce
commit 846e9e536d
Signed by: 0xa
GPG key ID: 91FA5E5BF9AA901C
3 changed files with 79 additions and 23 deletions

View file

@ -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)"
'';