Home Explore Blog CI



nixpkgs

nixos/modules/services/web-apps/glance.md
bc5ba6facd18c191203a6bfc7d2b3dec5cfd25afe12e290600000003000003a1
# Glance {#module-services-glance}

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

Visit [the Glance project page](https://github.com/glanceapp/glance) to learn
more about it.

## Quickstart {#module-services-glance-quickstart}

Checkout the [configuration docs](https://github.com/glanceapp/glance/blob/main/docs/configuration.md) to learn more.
Use the following configuration to start a public instance of Glance locally:

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

Chunks
acac57d8 (1st chunk of `nixos/modules/services/web-apps/glance.md`)
Title: Glance: A Self-Hosted Dashboard
Summary
Glance is a self-hosted dashboard that aggregates feeds in one place. The provided NixOS configuration enables a public instance of Glance with a home page displaying a calendar and weather widget for Nivelles, Belgium, and opens the firewall for access.