Hi,
I have installed nushell via:
# /etc/nixos/configuration.nix
{ config, pkgs, ... }:
{
# ...
environment.systemPackages = with pkgs; [
nushell
# ...
];
}
Which install the version 0.112.2.
When I ran the following nushell command
from --help
the output is
Parse a string or binary data into structured data.
You must use one of the following subcommands. Using this command as-is will only produce this help message.
Usage:
> from
Subcommands:
from csv - Parse text as .csv and create table.
from json - Convert JSON text into structured data.
from md - Convert markdown text into structured data.
from msgpack - Convert MessagePack data into Nu values.
from msgpackz - Convert brotli-compressed MessagePack data into Nu values.
from nuon - Convert from nuon to structured data.
from ods - Parse OpenDocument Spreadsheet(.ods) data and create table.
from ssv - Parse text as space-separated values and create a table. The default minimum number of spaces counted as a separator is 2.
from toml - Parse text as .toml and create record.
from tsv - Parse text as .tsv and create table.
from url - Parse url-encoded string as a record.
from xlsx - Parse binary Excel(.xlsx) data and create table.
from xml - Parse text as .xml and create record.
from yaml - Parse text as .yaml/.yml and create table.
from yml - Parse text as .yaml/.yml and create table.
# ...
Which means the INI format is not supported.
This is unexpected since nushell (AFAIK) supports this format “natively” (not through a third-party plugin): from ini | Nushell
Question:
Do I need to “pass an extra flag” to activate the support for this format? If so, how?
Link for the nix package nixpkgs/pkgs/by-name/nu/nushell/package.nix at 4382ed2b7a6839d4280a9b386db49cbc5907414d · NixOS/nixpkgs · GitHub
Thank you for reading ![]()