mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-14 20:56:36 +00:00
Nushell has the option to source from the login.nu file in the case that nushell is used as a login shell. This commit adds the login file alongside the existing config and env files as another configuration option.
5 lines
98 B
Text
5 lines
98 B
Text
# Prints "Hello, World" upon logging into tty1
|
|
if (tty) == "/dev/tty1" {
|
|
echo "Hello, World"
|
|
}
|
|
|