types.uniq types.int -> types.int
types.int already implies uniqueness.
This commit is contained in:
@@ -26,12 +26,12 @@ in {
|
||||
day = mkOption {
|
||||
description = "Colour temperature to use during day time";
|
||||
default = 5500;
|
||||
type = types.uniq types.int;
|
||||
type = types.int;
|
||||
};
|
||||
night = mkOption {
|
||||
description = "Colour temperature to use during night time";
|
||||
default = 3700;
|
||||
type = types.uniq types.int;
|
||||
type = types.int;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user