From a90f24191ef5fab2c006f3215ad2cca12784d47a Mon Sep 17 00:00:00 2001 From: Olivier Nicole Date: Thu, 11 Mar 2021 16:12:46 +0100 Subject: [PATCH] Avoid pitfall in home-manager config instructions When I followed the README, direnv did not get hooked into zsh because I had zsh installed at the system level, rather than enabled in my `home-manager` configuration. I suggest you make it explicit that it must be the case for the `home.nix` changes to work. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 5e5614a..5cca57e 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,11 @@ In `$HOME/.config/nixpkgs/home.nix` add programs.direnv.enable = true; programs.direnv.enableNixDirenvIntegration = true; + + programs.bash.enable = true; + # OR + programs.zsh.enable = true; + # Or any other shell you're using. } ```