16 lines
245 B
Nix
16 lines
245 B
Nix
{...}: {
|
|
programs.bash = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
enableVteIntegration = true;
|
|
bashrcExtra = ''
|
|
|
|
PS1='[\u@\h \W]\$ '
|
|
|
|
'';
|
|
sessionVariables = {
|
|
_JAVA_AWT_WM_NONREPARENTING = 1;
|
|
};
|
|
};
|
|
}
|