From 759649031e074bb7f1ba2984af601b3b39461550 Mon Sep 17 00:00:00 2001 From: luyu-wu Date: Tue, 20 Feb 2024 18:12:28 -0500 Subject: [PATCH] fixed my mistakes in nix module --- nix/hm-module.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/nix/hm-module.nix b/nix/hm-module.nix index 0353dbd..738bf14 100644 --- a/nix/hm-module.nix +++ b/nix/hm-module.nix @@ -116,14 +116,15 @@ in { }; placeholder_text = mkOption { - description = "The placeholder text color of the input field"; + description = "The placeholder text of the input field"; type = str; default = "Input Password..."; }; - font_color = mkOption { - description = "The font color of the input field"; + + placeholder_color = mkOption { + description = "The placeholder text color of the input field"; type = str; - default = "rgb(120, 120, 120)"; + default = "rgba(120, 120, 120,0.5)"; }; hide_input = mkOption {