nix-config/aspects/shell/bash.nix
2026-02-12 18:50:38 -03:00

16 lines
230 B
Nix

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