reciproka-ops/profiles/bash.nix

15 lines
363 B
Nix
Raw Permalink Normal View History

# Configuration common to all Reciproka Kolectiva servers
2022-08-15 07:32:25 +00:00
{config, ...}: {
2021-10-07 02:13:48 +00:00
# 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;
};
}