- 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
15 lines
304 B
Nix
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;
|
|
};
|
|
}
|