mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
e15010ee6e
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"
|
|
}
|
|
|