From 518cba3bfe3d1c07a18e2faef4f62fa639c5ba17 Mon Sep 17 00:00:00 2001 From: Henri Saudubray Date: Tue, 17 Feb 2026 13:29:37 +0100 Subject: [PATCH] feat (home/bash): username and hostname in prompt --- home/cli.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/cli.nix b/home/cli.nix index 22f3ee1..b1c99a7 100644 --- a/home/cli.nix +++ b/home/cli.nix @@ -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 '';