flake/home/bash.nix
2025-03-13 18:34:14 +03:00

10 lines
159 B
Nix

{
programs.bash = {
enable = true;
bashrcExtra = ''
if [ "dumb" == "$TERM" ] ; then
export TERM=xterm-256color
fi
'';
};
}