flake/home/bash.nix
2025-02-09 22:09:34 +03:00

10 lines
172 B
Nix

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