Files
dendritic/modules/home-manager/programs/bash.nix
2026-03-10 22:39:30 -05:00

10 lines
170 B
Nix

{
flake.modules.homeManager.bash = { pkgs, ... }:
{
programs.bash = {
enable = true;
enableCompletion = true;
package = pkgs.bash;
};
};
}