From f8699483e46972f64b0dee5d5e41bf4bb142629b Mon Sep 17 00:00:00 2001 From: Morgan Jones Date: Mon, 18 Nov 2024 09:08:43 +0000 Subject: [PATCH] hyprlock: use a string instead of a path for background.path (#633) Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com> --- modules/hyprlock/hm.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/hyprlock/hm.nix b/modules/hyprlock/hm.nix index bab67fe7..c54e4616 100644 --- a/modules/hyprlock/hm.nix +++ b/modules/hyprlock/hm.nix @@ -6,7 +6,7 @@ with config.lib.stylix; config = lib.mkIf (config.stylix.enable && config.stylix.targets.hyprlock.enable) { programs.hyprlock.settings = { - background.path = config.stylix.image; + background.path = "${config.stylix.image}"; input-field = with colors; { outer_color = "rgb(${base03})"; inner_color = "rgb(${base00})";