about summary refs log tree commit diff
path: root/nixos/modules/services/web-apps/glance.md
blob: f65b32b3ba914e7dd1167cbdc0e37069c11a6d11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# 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;
  };
}
```