MyNixOS website logo

Nushell settings. These will be flattened and assigned one by one to $env.config to avoid overwriting the default or existing options.

For example:

{
  show_banner = false;
  completions.external = {
    enable = true;
    max_results = 200;
  };
}

becomes:

$env.config.completions.external.enable = true
$env.config.completions.external.max_results = 200
$env.config.show_banner = false
Declarations
Type
attribute set of (null or (Nushell inline value) or boolean or signed integer or floating point number or string or absolute path or (attribute set of Nushell values) or (list of Nushell values))
Default
{ }
Example
{
  history = {
    format = "sqlite";
  };
  show_banner = false;
}