home-manager/systems/common/bash.nix

17 lines
294 B
Nix
Raw Permalink 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 = {
2024-02-06 15:13:57 +00:00
code = "codium"; # Alias VSCode with VSCodium
2023-08-26 16:35:30 +00:00
ll = "ls -lh";
la = "ls -lah";
".." = "cd ..";
};
2023-07-23 03:04:32 +00:00
};
}