From 23c874758d084f04e1b9bc5973066db650423118 Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Thu, 21 Aug 2025 12:12:57 -0300 Subject: [PATCH] feat(hm-module,spaces)!: change type of colors values to integer between 0 and 255 --- hm-module.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hm-module.nix b/hm-module.nix index f6ab6c1..328c0af 100644 --- a/hm-module.nix +++ b/hm-module.nix @@ -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 {