From ad2729bc6b4b0c14648d3bf93a4201b6870c78b6 Mon Sep 17 00:00:00 2001 From: rycee Date: Fri, 28 Jun 2024 15:25:00 +0000 Subject: [PATCH] deploy: 7e68e55d2e16d3a1e92a679430728c35a30fd24e --- options.xhtml | 119 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 119 insertions(+) diff --git a/options.xhtml b/options.xhtml index b3e56f4c5..ed375addd 100644 --- a/options.xhtml +++ b/options.xhtml @@ -60573,6 +60573,125 @@ string

+
+ + services.glance.enable + + +
+
+

Whether to enable glance.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/glance.nix> + +
+
+
+ + services.glance.package + + +
+
+

The glance package to use.

+ +

Type: +package

+ +

Default: +pkgs.glance

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/glance.nix> + +
+
+
+ + services.glance.settings + + +
+
+

Configuration written to a yaml file that is read by glance. See +https://github.com/glanceapp/glance/blob/main/docs/configuration.md +for more.

+ +

Type: +YAML value

+ +

Default:

{
+  pages = [
+    {
+      columns = [
+        {
+          size = "full";
+          widgets = [
+            {
+              type = "calendar";
+            }
+          ];
+        }
+      ];
+      name = "Calendar";
+    }
+  ];
+}
+
+ +

Example:

{
+  pages = [
+    {
+      columns = [
+        {
+          size = "full";
+          widgets = [
+            {
+              type = "calendar";
+            }
+            {
+              location = "London, United Kingdom";
+              type = "weather";
+            }
+          ];
+        }
+      ];
+      name = "Home";
+    }
+  ];
+  server = {
+    port = 5678;
+  };
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/glance.nix> + +
+
services.gnome-keyring.enable