nixcfg/homeManagerModules/apps/bash/default.nix

32 lines
653 B
Nix
Raw Normal View History

2024-04-07 22:16:33 -04:00
{
pkgs,
lib,
config,
...
}: {
config = lib.mkIf config.alyraffauf.apps.bash.enable {
2024-03-28 19:52:15 -04:00
programs.bash = {
enable = true;
enableCompletion = true;
2024-03-29 08:49:48 -04:00
enableVteIntegration = true;
shellOptions = [
"autocd"
"cdspell"
"checkjobs"
"checkwinsize"
"dirspell"
"dotglob"
"extglob"
"globstar"
"histappend"
];
2024-03-28 19:52:15 -04:00
initExtra = ''
export PS1="[\[$(tput setaf 27)\]\u\[$(tput setaf 135)\]@\[$(tput setaf 45)\]\h:\[$(tput setaf 33)\]\w] \[$(tput sgr0)\]$ "
'';
2024-06-19 15:34:11 -04:00
shellAliases = {
cat = lib.getExe pkgs.bat;
};
2024-03-28 19:52:15 -04:00
};
};
}