grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / web-apps / glance.md
blobf65b32b3ba914e7dd1167cbdc0e37069c11a6d11
1 # Glance {#module-services-glance}
3 Glance is a self-hosted dashboard that puts all your feeds in one place.
5 Visit [the Glance project page](https://github.com/glanceapp/glance) to learn
6 more about it.
8 ## Quickstart {#module-services-glance-quickstart}
10 Checkout the [configuration docs](https://github.com/glanceapp/glance/blob/main/docs/configuration.md) to learn more.
11 Use the following configuration to start a public instance of Glance locally:
13 ```nix
15   services.glance = {
16     enable = true;
17     settings = {
18       pages = [
19         {
20           name = "Home";
21           columns = [
22             {
23               size = "full";
24               widgets = [
25                 { type = "calendar"; }
26                 {
27                   type = "weather";
28                   location = "Nivelles, Belgium";
29                 }
30               ];
31             }
32           ];
33         }
34       ];
35     };
36     openFirewall = true;
37   };
39 ```