diff --git a/options.xhtml b/options.xhtml index b3e56f4c..ed375add 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