files.nuon.enable

Enable nuon command

type

boolean

example

{
  files.nuon.enable = true;
}

default

{
  files.nuon.enable = false;
}

files.nush

Nushell script to create an alias.

type

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

example

{
  files.nush = {
    hello = {
      en = [
        "arg"
        "{hello: $arg}"
      ];
      pt = [
        "arg"
        "{ola: $arg}"
      ];
    };
    world = {
      hello = ''
        # it could use previous commands
        hello en "World"
        hello pt "Mundo"
      '';
    };
  };
}

default

{
  files.nush = { };
}