[NixOS] Don't unconditionally set TERM variable to fix tramp

This commit is contained in:
Ivan Malison 2023-08-28 20:07:21 -06:00
parent 5b1bd4f2e6
commit d0d93e3a83

View File

@ -32,6 +32,7 @@ with lib;
programs.starship = {
enable = true;
interactiveOnly = true;
settings = {
add_newline = false;
character = {
@ -73,7 +74,6 @@ with lib;
export STARSHIP_INSIDE_EMACS="yes"
'';
extraInit = ''
export TERM=xterm-256color
export PATH="$HOME/.cargo/bin:${libDir}/bin:${libDir}/functions:$PATH";
'';
};