pantheon/configs/programs/direnv.nix
2025-04-10 16:28:33 +08:00

12 lines
278 B
Nix

{
# direnv lets us declare a .envrc in each project directory
# and updates the shell with the packages specified.
home-manager.users.rafiq = {
programs.direnv = {
enable = true;
enableBashIntegration = true;
nix-direnv.enable = true;
};
};
}