flake/modules/home-manager/programs/bash.nix
2025-10-19 16:13:59 +03:00

10 lines
159 B
Nix

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