feat(home-manager): add direnv-nix to rafiq config

This commit is contained in:
Mohammad Rafiq 2025-03-04 13:16:56 +08:00
parent 362cf48b10
commit a0159c20c0

View file

@ -7,4 +7,12 @@
ai = "aichat -r %shell% -e";
};
};
# 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;
};
}