diff --git a/options.xhtml b/options.xhtml index 8a2606248..c91a6d091 100644 --- a/options.xhtml +++ b/options.xhtml @@ -73605,6 +73605,182 @@ package

+
+ + services.hyprsunset.enable + + +
+
+

Whether to enable Hyprsunset, Hyprland’s blue-light filter.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

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

The hyprsunset package to use.

+ +

Type: +package

+ +

Default: +pkgs.hyprsunset

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/hyprsunset.nix> + +
+
+
+ + services.hyprsunset.extraArgs + + +
+
+

Additional command-line arguments to pass to hyprsunset.

+ +

Type: +list of string

+ +

Default: +[ ]

+ +

Example:

[
+  "--identity"
+]
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/hyprsunset.nix> + +
+
+
+ + services.hyprsunset.transitions + + +
+
+

Set of transitions for different times of day (e.g., sunrise, sunset)

+ +

Type: +attribute set of (submodule)

+ +

Default: +{ }

+ +

Example:

{
+  sunrise = {
+    calendar = "*-*-* 06:00:00";
+    requests = [
+      [ "temperature" "6500" ]
+      [ "gamma 100" ]
+    ];
+  };
+  sunset = {
+    calendar = "*-*-* 19:00:00";
+    requests = [
+      [ "temperature" "3500" ]
+    ];
+  };
+}
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/hyprsunset.nix> + +
+
+
+ + services.hyprsunset.transitions.<name>.calendar + + +
+
+

Systemd calendar expression for when to run this transition.

+ +

Type: +string

+ +

Example: +"*-*-* 06:00:00"

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/hyprsunset.nix> + +
+
+
+ + services.hyprsunset.transitions.<name>.requests + + +
+
+

List of requests to pass to hyprctl hyprsunset for this transition. Each inner list represents a separate command.

+ +

Type: +list of list of string

+ +

Default: +[ ]

+ +

Example:

[
+  [ "temperature" "3500" ]
+]
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/hyprsunset.nix> + +
+
services.imapnotify.enable