nixcfg/homeManagerModules/cliApps/bash/default.nix
2024-03-29 08:49:48 -04:00

27 lines
647 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;
enableVteIntegration = true;
shellOptions = [
"autocd"
"cdspell"
"checkjobs"
"checkwinsize"
"dirspell"
"dotglob"
"extglob"
"globstar"
"histappend"
];
initExtra = ''
export PS1="[\[$(tput setaf 27)\]\u\[$(tput setaf 135)\]@\[$(tput setaf 45)\]\h:\[$(tput setaf 33)\]\w] \[$(tput sgr0)\]$ "
'';
};
};
}