7 lines
130 B
Nix
7 lines
130 B
Nix
{ config, ... }:
|
|
{
|
|
programs.bash = {
|
|
enable = true;
|
|
historyFile = "${config.xdg.configHome}/bash/.bash_history";
|
|
};
|
|
}
|