diff --git a/nixos/modules/services/x11/redshift.nix b/nixos/modules/services/x11/redshift.nix
index ffae22d2d670..d40373ec2e55 100644
--- a/nixos/modules/services/x11/redshift.nix
+++ b/nixos/modules/services/x11/redshift.nix
@@ -22,14 +22,16 @@ in {
latitude = mkOption {
type = types.str;
description = ''
- Your current latitude.
+ Your current latitude, between
+ -90.0 and 90.0.
'';
};
longitude = mkOption {
type = types.str;
description = ''
- Your current longitude.
+ Your current longitude, between
+ between -180.0 and 180.0.
'';
};
@@ -38,14 +40,16 @@ in {
type = types.int;
default = 5500;
description = ''
- Colour temperature to use during the day.
+ Colour temperature to use during the day, between
+ 1000 and 25000 K.
'';
};
night = mkOption {
type = types.int;
default = 3700;
description = ''
- Colour temperature to use at night.
+ Colour temperature to use at night, between
+ 1000 and 25000 K.
'';
};
};