nixpkgs/nixos/modules/services/web-apps/glance.md
2025-09-09 13:15:19 +07:00

930 B

Glance

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

Visit the Glance project page to learn more about it.

Quickstart

Check out the configuration docs to learn more. Use the following configuration to start a public instance of Glance locally:

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