Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
930 B
Markdown
40 lines
930 B
Markdown
# 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}
|
|
|
|
Check out 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;
|
|
};
|
|
}
|
|
```
|