Shell configurations: bash, fish Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
9 lines
184 B
Nix
9 lines
184 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.homeManager.shell-bash = { config, lib, pkgs, ... }: {
|
|
programs.bash = {
|
|
enable = true;
|
|
historyFile = "~/.cache/bash_history";
|
|
};
|
|
};
|
|
}
|