nixcfg/homeManagerModules/cliApps/bash/default.nix
2024-03-28 19:52:15 -04:00

15 lines
407 B
Nix

{ pkgs, lib, config, ... }: {
options = { cliApps.bash.enable = lib.mkEnableOption "Enables bash."; };
config = lib.mkIf config.cliApps.bash.enable {
programs.bash = {
enable = true;
enableCompletion = true;
initExtra = ''
export PS1="[\[$(tput setaf 27)\]\u\[$(tput setaf 135)\]@\[$(tput setaf 45)\]\h:\[$(tput setaf 33)\]\w] \[$(tput sgr0)\]$ "
'';
};
};
}