mirror of
https://github.com/hyprwm/hyprlock.git
synced 2024-11-17 07:15:57 +01:00
fixed my mistakes in nix module
This commit is contained in:
parent
d30a5aa6c6
commit
759649031e
1 changed files with 5 additions and 4 deletions
|
@ -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 = "<i>Input Password...</i>";
|
||||
};
|
||||
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 {
|
||||
|
|
Loading…
Reference in a new issue