From cc272f0cceb4e9f51b6c7e0eac27e08ca98a9877 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Sun, 14 Jul 2024 19:48:08 +0200 Subject: [PATCH] greet user with their name --- home.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home.nix b/home.nix index ed03d28..d214e22 100644 --- a/home.nix +++ b/home.nix @@ -11,7 +11,7 @@ in { text = '' #!/usr/bin/env bash - echo 'Hello, World!' + echo 'Hello, ${username}!' echo '*slaps roof* This script can fit so many lines in it!' ''; executable = true;