Files
dendritic/modules/programs/bash.nix
2026-03-14 12:46:09 -05:00

10 lines
225 B
Nix

{
flake.modules.homeManager.bash = { pkgs, lib, config, ... }:
{
programs.bash = lib.mkIf (config.shell.program == "bash") {
enable = true;
enableCompletion = true;
package = pkgs.bash;
};
};
}