home/{zsh,bash}: add mutable source

This commit is contained in:
Oystein Kristoffer Tveit 2024-07-18 15:13:00 +02:00
parent 221e425235
commit 3497d51db6
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
2 changed files with 5 additions and 0 deletions

View File

@ -122,6 +122,9 @@ in {
enable = true;
historyFile = "${config.xdg.dataHome}/bash_history";
historySize = 100000;
bashrcExtra = ''
source "${config.xdg.configHome}/mutable_env.sh"
'';
};
bat.enable = true;

View File

@ -84,6 +84,8 @@ in
if ! { [ "$TERM" = "screen" ] && [ -n "$TMUX" ]; } then
zstyle ':fzf-tab:*' fzf-command ftb-tmux-popup
fi
source "${config.xdg.configHome}/mutable_env.sh"
'';
};
}