reciproka-ops/profiles/bash.nix
Fiscal Velvet Poet c3823d0cfb
Correct grammar in the collective's name
You know that moment when you're learning a languaged and getting the
grammar all wrong? No? Niether do I.

resolves #6
2024-01-10 01:28:40 +10:00

15 lines
363 B
Nix

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