MyNixOS website logo
option

services.hyprsunset.transitions

Deprecated - Use services.hyprsunset.settings instead to manage transitions.

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

Declarations
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" ]
    ];
  };
}