8 lines
152 B
Nix
8 lines
152 B
Nix
{ config, ... }:
|
|
{
|
|
programs.bash = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
historyFile = "${config.xdg.stateHome}/bash/history";
|
|
};
|
|
}
|