Merge pull request #73 from OlivierNicole/patch-1

Avoid pitfall in home-manager config instructions
This commit is contained in:
Jörg Thalheim 2021-03-12 07:31:19 +00:00 committed by GitHub
commit eb75bbe7f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.
}
```