home-manager/modules/bash.nix

16 lines
257 B
Nix
Raw Normal View History

2023-08-26 16:35:30 +00:00
{...}: {
config.programs.bash = {
enable = true;
2023-08-31 12:51:06 +00:00
initExtra = ''
PS1='\n\[\033[1;32m\][\[\e]0;\u@\h: \w\a\]\u@\h:\w]\$\[\033[0m\] '
'';
2023-08-26 16:35:30 +00:00
shellAliases = {
ll = "ls -lh";
la = "ls -lah";
".." = "cd ..";
};
2023-07-23 03:04:32 +00:00
};
}