reciproka-ops/profiles/bash.nix
2021-10-07 12:13:48 +10:00

20 lines
355 B
Nix

# Configuration common to all JFDIC 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;
};
}