17 lines
318 B
Nix
17 lines
318 B
Nix
{ config, ... }:
|
|
{
|
|
programs.bash = {
|
|
enable = true;
|
|
historyFile = "${config.xdg.dataHome}/bash_history";
|
|
historySize = 100000;
|
|
bashrcExtra = ''
|
|
source "${config.xdg.configHome}/mutable_env.sh"
|
|
'';
|
|
shellOptions = [
|
|
"histappend"
|
|
"checkwinsize"
|
|
"checkjobs"
|
|
];
|
|
};
|
|
}
|