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
'';
};
}

View file

@ -7,6 +7,7 @@
./tmux ./tmux
./git.nix ./git.nix
./ssh.nix ./ssh.nix
./bash.nix
]; ];
home.username = "osbm"; home.username = "osbm";