feat(hm-module,spaces)!: change type of colors values to integer between 0 and 255

This commit is contained in:
Guz
2025-08-21 12:12:57 -03:00
parent 20b1028b62
commit 23c874758d

View File

@@ -114,15 +114,15 @@ in {
{...}: {
options = {
red = mkOption {
type = int;
type = ints.between 0 255;
default = 0;
};
green = mkOption {
type = int;
type = ints.between 0 255;
default = 0;
};
blue = mkOption {
type = int;
type = ints.between 0 255;
default = 0;
};
custom = mkOption {