This commit is contained in:
Osman Faruk Bayram 2025-02-09 22:09:34 +03:00
parent 40533661ff
commit aac4a9f093
2 changed files with 11 additions and 0 deletions

10
home/bash.nix Normal file
View file

@ -0,0 +1,10 @@
{pkgs, ...}: {
programs.bash = {
enable = true;
bashrcExtra = ''
if [ "dumb" == "$TERM" ] ; then
export TERM=xterm-256color
fi
'';
};
}