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

services.glance.enable

Whether to enable glance.

Type: boolean

Default:

false

Example:

true

Declared by:

services.glance.package

The glance package to use.

Type: package

Default:

pkgs.glance

Declared by:

services.glance.settings

Configuration written to a yaml file that is read by glance. See https://github.com/glanceapp/glance/blob/main/docs/configuration.md for more.

Type: YAML 1.1 value

Default:

{
  pages = [
    {
      columns = [
        {
          size = "full";
          widgets = [
            {
              type = "calendar";
            }
          ];
        }
      ];
      name = "Calendar";
    }
  ];
}

Example:

{
  pages = [
    {
      columns = [
        {
          size = "full";
          widgets = [
            {
              type = "calendar";
            }
            {
              location = "London, United Kingdom";
              type = "weather";
            }
          ];
        }
      ];
      name = "Home";
    }
  ];
  server = {
    port = 5678;
  };
}

Declared by: