mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
nixos/redshift: use more accurate int types
This commit is contained in:
parent
2b075e121e
commit
b32466599d
1 changed files with 2 additions and 2 deletions
|
|
@ -51,7 +51,7 @@ in
|
|||
|
||||
temperature = {
|
||||
day = mkOption {
|
||||
type = types.int;
|
||||
type = types.ints.between 1000 25000;
|
||||
default = 5500;
|
||||
description = ''
|
||||
Colour temperature to use during the day, between
|
||||
|
|
@ -59,7 +59,7 @@ in
|
|||
'';
|
||||
};
|
||||
night = mkOption {
|
||||
type = types.int;
|
||||
type = types.ints.between 1000 25000;
|
||||
default = 3700;
|
||||
description = ''
|
||||
Colour temperature to use at night, between
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue