From 7cacd1ca77e2660e04b38a73f13a79823f957683 Mon Sep 17 00:00:00 2001
From: khaneliman
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