2021-07-22 10:02:25 +10:00
|
|
|
# Configuration common to all my servers
|
2022-03-08 00:26:15 +10:00
|
|
|
{config, ...}: {
|
2021-07-22 10:02:25 +10:00
|
|
|
# Program defaults for all hosts
|
|
|
|
programs.bash = {
|
|
|
|
interactiveShellInit = ''
|
|
|
|
export TERM="xterm-256color"
|
|
|
|
test -r ~/.dir_colors && eval $(dircolors ~/.dir_colors)
|
|
|
|
'';
|
|
|
|
vteIntegration = true;
|
|
|
|
};
|
|
|
|
}
|