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