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