files.nus

Nushell script to create an alias.

type

attribute set of (Concatenated string or list of Concatenated string)

example

{
  files.nus = {
    hello = [
      "name"
      "{hello: $name}"
    ];
    world = ''
      # it could use previous commands
      hello world
    '';
  };
}

default

{
  files.nus = { };
}