programs.nushell.loginFile

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.

Type
null or (submodule)
Default
null
Example
''
  # Prints "Hello, World" upon logging into tty1
  if (tty) == "/dev/tty1" {
    echo "Hello, World"
  }
''
Declared
<home-manager/modules/programs/nushell.nix>