nix-config/users/tacocat/shell/bash.nix

16 lines
245 B
Nix
Raw Normal View History

2023-10-21 00:49:53 +00:00
{...}: {
programs.bash = {
enable = true;
enableCompletion = true;
enableVteIntegration = true;
2023-10-21 00:49:53 +00:00
bashrcExtra = ''
PS1='[\u@\h \W]\$ '
'';
2024-01-18 22:53:39 +00:00
sessionVariables = {
_JAVA_AWT_WM_NONREPARENTING = 1;
};
2023-10-21 00:49:53 +00:00
};
}