Skip to content

Commit

Permalink
nix: add dots_center
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman authored and fufexan committed Feb 21, 2024
1 parent 9d8ee2a commit 9dea7c2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion nix/hm-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ in {
description = "Hides the cursor instead of making it visible";
type = bool;
default = true;
};
};
};

backgrounds = mkOption {
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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}
Expand Down

0 comments on commit 9dea7c2

Please sign in to comment.