services.glance.settings.pages
NixOS option
List of pages to be present on the dashboard. See https://github.com/glanceapp/glance/blob/main/docs/configuration.md#pages--columns
type: YAML 1.1 valueDefault
[
{
columns = [
{
size = "full";
widgets = [
{
type = "calendar";
}
];
}
];
name = "Calendar";
}
]Example
declared in: nixos/modules/services/web-apps/glance.nixView source on NixOS/nixpkgs →[
{
columns = [
{
size = "full";
widgets = [
{
type = "calendar";
}
{
location = {
_secret = "/var/lib/secrets/glance/location";
};
type = "weather";
}
];
}
];
name = "Home";
}
]