mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
6 lines
98 B
Text
6 lines
98 B
Text
|
# Prints "Hello, World" upon logging into tty1
|
||
|
if (tty) == "/dev/tty1" {
|
||
|
echo "Hello, World"
|
||
|
}
|
||
|
|