1# Glance {#module-services-glance}
2
3Glance is a self-hosted dashboard that puts all your feeds in one place.
4
5Visit [the Glance project page](https://github.com/glanceapp/glance) to learn
6more about it.
7
8## Quickstart {#module-services-glance-quickstart}
9
10Checkout the [configuration docs](https://github.com/glanceapp/glance/blob/main/docs/configuration.md) to learn more.
11Use the following configuration to start a public instance of Glance locally:
12
13```nix
14{
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 };
38}
39```