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