home-manager/common/bash.nix

16 lines
242 B
Nix
Raw Normal View History

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