8aa2357df5
resolves #18
15 lines
363 B
Nix
15 lines
363 B
Nix
# Configuration common to all Reciproka Kolectiva 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;
|
|
};
|
|
}
|