diff options
| author | Alexander Kassouni <alex@kassouni.net> | 2026-07-22 23:30:49 -0700 |
|---|---|---|
| committer | Alexander Kassouni <alex@kassouni.net> | 2026-07-22 23:30:49 -0700 |
| commit | 2f815bb8fbf9397c92f0d88b80dd83c6ef5698b7 (patch) | |
| tree | 566453e7704570d6713b79543ed59b049ad73bce /users/kassouni/bash.nix | |
| parent | 23ba623e405d0aa8d554274aacd019d7a015aa9d (diff) | |
more
Diffstat (limited to 'users/kassouni/bash.nix')
| -rw-r--r-- | users/kassouni/bash.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/users/kassouni/bash.nix b/users/kassouni/bash.nix new file mode 100644 index 0000000..ae584d7 --- /dev/null +++ b/users/kassouni/bash.nix @@ -0,0 +1,13 @@ +{ ... }: { + programs.bash = { + enable = true; + + shellAliases = { + n = "nvim"; + }; + + initExtra = '' + PS1="\[\033[32;1m\][\w] λ \[\033[0m\]" + ''; + }; +} |
