Files
dendritic/modules/programs/bash.nix
John Lancaster cf2ba8731d reorg
2026-03-11 08:49:07 -05:00

10 lines
170 B
Nix

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