nix-config/home-manager/sajenim/features/cli/direnv.nix
jasmine e18635be43
refactor(home-manager): refine CLI feature configurations
- Add direnv module with nix-direnv integration, replacing manual hook
- Disable starship's add_newline for more compact prompt
- Clean up comments across CLI features for better readability
2025-10-27 13:56:01 +08:00

15 lines
304 B
Nix

{
# Automatic environment variable management per-directory
programs.direnv = {
enable = true;
# Faster nix-shell integration with dependency caching
nix-direnv.enable = true;
# Hook into zsh
enableZshIntegration = true;
# Suppress logging output
silent = true;
};
}