nix-configs/home-modules/bash.nix

9 lines
152 B
Nix
Raw Permalink Normal View History

2024-09-21 20:07:40 -04:00
{ config, ... }:
{
programs.bash = {
enable = true;
enableCompletion = true;
historyFile = "${config.xdg.stateHome}/bash/history";
};
}