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

Whether to enable lazydocker, a simple terminal UI for both docker and docker compose.

Type: boolean

Default:

false

Example:

true

Declared by:

programs.lazydocker.package

The lazydocker package to use.

Type: null or package

Default:

pkgs.lazydocker

Declared by:

programs.lazydocker.settings

Configuration written to $XDG_CONFIG_HOME/lazydocker/config.yml on Linux or on Darwin if is set, otherwise ~/Library/Application Support/jesseduffield/lazydocker/config.yml. See https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md for supported values.

Type: YAML 1.1 value

Default:

{
  commandTemplates = {
    dockerCompose = "docker compose";
  };
}

Example:

{
  commandTemplates = {
    dockerCompose = "docker compose compose -f docker-compose.yml";
  };
  gui = {
    theme = {
      activeBorderColor = [
        "red"
        "bold"
      ];
      inactiveBorderColor = [
        "blue"
      ];
    };
  };
}

Declared by: