depot/third_party/nixpkgs/nixos/modules/services/web-apps/glance.md
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

929 B

Glance

Glance is a self-hosted dashboard that puts all your feeds in one place.

Visit the Glance project page to learn more about it.

Quickstart

Checkout the configuration docs to learn more. Use the following configuration to start a public instance of Glance locally:

{
  services.glance = {
    enable = true;
    settings = {
      pages = [
        {
          name = "Home";
          columns = [
            {
              size = "full";
              widgets = [
                { type = "calendar"; }
                {
                  type = "weather";
                  location = "Nivelles, Belgium";
                }
              ];
            }
          ];
        }
      ];
    };
    openFirewall = true;
  };
}