dotfiles/hm/shell/direnv.nix
Geoffrey Frogeye 6b662477c4
Shell goodness
Also potential for RCE, yay?
2025-01-21 23:43:01 +01:00

18 lines
331 B
Nix

# Allow switching to a specific environment when going into a directory
{
...
}:
{
config = {
programs = {
direnv = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
git.ignores = [ ".envrc" ".direnv" ];
};
};
}