Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

programs.tiny.enable

Whether to enable tiny, a TUI IRC client written in Rust.

Type: boolean

Default:

false

Example:

true

Declared by:

programs.tiny.package

The tiny package to use.

Type: package

Default:

pkgs.tiny

Declared by:

programs.tiny.settings

Configuration written to $XDG_CONFIG_HOME/tiny/config.yml. See https://github.com/osa1/tiny/blob/master/crates/tiny/config.yml for the default configuration.

Type: YAML 1.1 value

Default:

{ }

Example:

{
  servers = [
    {
      addr = "irc.libera.chat";
      port = 6697;
      tls = true;
      realname = "John Doe";
      nicks = [ "tinyuser" ];
    }
  ];
  defaults = {
    nicks = [ "tinyuser" ];
    realname = "John Doe";
    join = [];
    tls = true;
  };
};

Declared by: