From 9f0a6aae5843e506166308d3d270493927140e6e Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sun, 2 Mar 2025 11:27:05 -0800 Subject: [PATCH] fix(home/hyprlock): Set input-field to a attrset so it can merge properly --- .../programs/wayland/hyprlock/default.nix | 22 +++++++++---------- 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/modules/home/programs/wayland/hyprlock/default.nix b/modules/home/programs/wayland/hyprlock/default.nix index 89e73ff..bef14ec 100644 --- a/modules/home/programs/wayland/hyprlock/default.nix +++ b/modules/home/programs/wayland/hyprlock/default.nix @@ -19,18 +19,16 @@ in { no_fade_in = false; }; - input-field = [ - { - size = "200, 50"; - position = "0, -80"; - monitor = ""; - dots_center = true; - fade_on_empty = false; - outline_thickness = 5; - placeholder_text = "password..."; - shadow_passes = 2; - } - ]; + input-field = { + size = "200, 50"; + position = "0, -80"; + monitor = ""; + dots_center = true; + fade_on_empty = false; + outline_thickness = 5; + placeholder_text = "password..."; + shadow_passes = 2; + }; }; }; };