feat (home/bash): username and hostname in prompt

This commit is contained in:
Henri Saudubray 2026-02-17 13:29:37 +01:00
parent c04aef8ea4
commit 518cba3bfe
Signed by: hms
GPG key ID: 7065F57ED8856128

View file

@ -75,7 +75,7 @@
programs.bash = {
enable = true;
bashrcExtra = ''
export PS1=" \W \[\e[33m\]λ\[\e[0m\] "
export PS1=" \u@\h:\w \[\e[33m\]λ\[\e[0m\] "
task ls
if [ "$(ls -A ~/dwn)" ]; then echo "TODO: organize downloads."; fi
'';