mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
22 lines
329 B
Nix
22 lines
329 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.bash = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
shellOptions = [
|
|
"histappend"
|
|
"checkwinsize"
|
|
"extglob"
|
|
"globstar"
|
|
"checkjobs"
|
|
];
|
|
historyControl = [
|
|
"erasedups"
|
|
"ignorespace"
|
|
];
|
|
historyFileSize = 100000;
|
|
historySize = 10000;
|
|
};
|
|
}
|