16 lines
230 B
Nix
16 lines
230 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.homeManager.shell-bash =
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
programs.bash = {
|
|
enable = true;
|
|
historyFile = "~/.cache/bash_history";
|
|
};
|
|
};
|
|
}
|