Files
dotfiles/home/bash/default.nix
2024-07-31 13:11:51 +02:00

22 lines
329 B
Nix

{ ... }:
{
programs.bash = {
enable = true;
enableCompletion = true;
shellOptions = [
"histappend"
"checkwinsize"
"extglob"
"globstar"
"checkjobs"
];
historyControl = [
"erasedups"
"ignorespace"
];
historyFileSize = 100000;
historySize = 10000;
};
}