pantheon/programs_temp/direnv.nix
2025-03-27 03:19:25 +08:00

9 lines
231 B
Nix

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