The login file to be used for nushell upon logging in.
See https://www.nushell.sh/book/configuration.html#configuring-nu-as-a-login-shell for more information.
Declarations
Type
null or (submodule)
Default
null
Example
''
# Prints "Hello, World" upon logging into tty1
if (tty) == "/dev/tty1" {
echo "Hello, World"
}
''
Sign in to create a configuration using this setting.