From 2c0c66a8ddcdff69b2ff694fefbcd8df4387a9e7 Mon Sep 17 00:00:00 2001 From: DADA30000 <73874445+DADA30000@users.noreply.github.com> Date: Sun, 22 Jun 2025 21:46:56 +0300 Subject: [PATCH] change accepted type to float (#1021) Co-authored-by: Jas Singh --- nix/module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/module.nix b/nix/module.nix index f1c9cbe..2adfa60 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -605,7 +605,7 @@ in theme.font.size = mkStrOption "1.2rem"; theme.font.weight = mkIntOption 600; theme.matugen = mkBoolOption false; - theme.matugen_settings.contrast = mkIntOption 0; + theme.matugen_settings.contrast = mkFloatOption 0.0; theme.matugen_settings.mode = mkStrOption "dark"; theme.matugen_settings.scheme_type = mkStrOption "tonal-spot"; theme.matugen_settings.variation = mkStrOption "standard_1";