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.alacritty.enable

Whether to enable Alacritty.

Type: boolean

Default:

false

Example:

true

Declared by:

programs.alacritty.package

The alacritty package to use.

Type: null or package

Default:

pkgs.alacritty

Declared by:

programs.alacritty.settings

Configuration written to $XDG_CONFIG_HOME/alacritty/alacritty.yml or $XDG_CONFIG_HOME/alacritty/alacritty.toml (the latter being used for alacritty 0.13 and later). See https://github.com/alacritty/alacritty/tree/master#configuration for more info.

Type: TOML value

Default:

{ }

Example:

{
  keyboard = {
    bindings = [
      {
        chars = "\\u000c";
        key = "K";
        mods = "Control";
      }
    ];
  };
  window = {
    dimensions = {
      columns = 200;
      lines = 3;
    };
  };
}

Declared by:

programs.alacritty.theme

A theme from the alacritty-theme repository to import in the configuration. See https://github.com/alacritty/alacritty-theme/tree/master/themes for a list of available themes. If you would like to import your own theme, use programs.alacritty.settings.general.import or programs.alacritty.settings.colors directly.

Type: null or string

Default:

null

Example:

"solarized_dark"

Declared by:

programs.alacritty.themePackage

The alacritty-theme package to use.

Type: package

Default:

pkgs.alacritty-theme

Declared by: