From 9dea7c2f5578f3cdb171ad64766f4da4c9ff1ba8 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Wed, 21 Feb 2024 12:12:09 -0600 Subject: [PATCH] nix: add dots_center --- nix/hm-module.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/nix/hm-module.nix b/nix/hm-module.nix index c62f16d..0db46e6 100644 --- a/nix/hm-module.nix +++ b/nix/hm-module.nix @@ -31,7 +31,7 @@ in { description = "Hides the cursor instead of making it visible"; type = bool; default = true; - }; + }; }; backgrounds = mkOption { @@ -103,6 +103,12 @@ in { default = 0.15; }; + dots_center = mkOption { + description = "Center position of the dots in the input field"; + type = bool; + default = true; + }; + outer_color = mkOption { description = "The outer color of the input field"; type = str; @@ -262,6 +268,7 @@ in { outline_thickness = ${toString input-field.outline_thickness} dots_size = ${toString input-field.dots_size} dots_spacing = ${toString input-field.dots_spacing} + dots_center = ${boolToString input-field.dots_center} outer_color = ${input-field.outer_color} inner_color = ${input-field.inner_color} font_color = ${input-field.font_color}