mio-ops/profiles/bash.nix

20 lines
352 B
Nix
Raw Normal View History

# Configuration common to all my servers
{ config, ... }:
{
# Program defaults for all hosts
programs.bash = {
interactiveShellInit = ''
export TERM="xterm-256color"
test -r ~/.dir_colors && eval $(dircolors ~/.dir_colors)
'';
promptInit = ''
eval "$(starship init bash)"
'';
vteIntegration = true;
};
}