Add .bin, .local/bin to path, turn off autosuggest (we have atuin)

This commit is contained in:
Leonora Tindall 2024-08-29 15:41:12 -05:00
parent e70ca1e87a
commit 23ab34ae69
1 changed files with 2 additions and 1 deletions

View File

@ -6,13 +6,14 @@
programs.zsh = {
enable = true;
autosuggestion.enable = true;
autosuggestion.enable = false;
enableCompletion = true;
enableVteIntegration = true;
initExtra = ''
. "$HOME/.cargo/env"
export GUIX_PROFILE="/home/nora/.config/guix/current"
. "$GUIX_PROFILE/etc/profile"
export PATH="$HOME/.bin:$HOME/.local/bin:$PATH"
fortune
'';
};