nix-configs/home-modules/bash.nix
2024-09-21 20:07:44 -04:00

8 lines
152 B
Nix

{ config, ... }:
{
programs.bash = {
enable = true;
enableCompletion = true;
historyFile = "${config.xdg.stateHome}/bash/history";
};
}