Skip to content

Commit

Permalink
Convert image path to string for Hyprlock fixing #918 (#925)
Browse files Browse the repository at this point in the history
Closes: #918
Fixes: c8e4a0d ("treewide: optionalize stylix.image option (#717)")

Tested-by: https://github.com/Stormfox2
Reviewed-by: Flameopathic <[email protected]>
Reviewed-by: NAHO <[email protected]>
  • Loading branch information
Salfurium authored Feb 27, 2025
1 parent b273375 commit 2111394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/hyprlock/hm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ in
config = lib.mkIf (config.stylix.enable && cfg.enable) {
programs.hyprlock.settings = {
background = {
path = lib.mkIf cfg.useWallpaper config.stylix.image;
color = "rgb(${colors.base00})";
path = lib.mkIf cfg.useWallpaper "${config.stylix.image}";
};
input-field = with colors; {
outer_color = "rgb(${base03})";
Expand Down

0 comments on commit 2111394

Please sign in to comment.