From 7cacd1ca77e2660e04b38a73f13a79823f957683 Mon Sep 17 00:00:00 2001 From: khaneliman Date: Sat, 22 Feb 2025 00:25:20 +0000 Subject: [PATCH] deploy: e512de4722831c850ec0681f69510fcba44f582d --- options.xhtml | 147 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 147 insertions(+) diff --git a/options.xhtml b/options.xhtml index ddf4238fb..d7e370c53 100644 --- a/options.xhtml +++ b/options.xhtml @@ -81513,6 +81513,153 @@ signed integer

+
+ + services.wluma.enable + + +
+
+

Whether to enable Enable wluma, a service for automatic brightness adjustment.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

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

Package providing wluma.

+ +

Type: +package

+ +

Default: +pkgs.wluma

+ +

Declared by:

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

Configuration to use for wluma. See +https://github.com/maximbaz/wluma/blob/main/config.toml +for available options.

+ +

Type: +TOML value

+ +

Default: +{ }

+ +

Example:

{
+  als = {
+    iio = {
+      path = "";
+      thresholds = {
+        "0" = "night";
+        "20" = "dark";
+        "250" = "normal";
+        "500" = "bright";
+        "80" = "dim";
+        "800" = "outdoors";
+      };
+    };
+  };
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/wluma.nix> + +
+
+
+ + services.wluma.systemd.enable + + +
+
+

Wluma systemd integration

+ +

Type: +boolean

+ +

Default: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/wluma.nix> + +
+
+
+ + services.wluma.systemd.target + + +
+
+

The systemd target that will automatically start the Wluma service.

When setting this value to "sway-session.target", +make sure to also enable wayland.windowManager.sway.systemd.enable, +otherwise the service may never be started.

+ +

Type: +null or string

+ +

Default: +config.wayland.systemd.target

+ +

Example: +"sway-session.target"

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/wluma.nix> + +
+
services.wob.enable