From 970cd853bfb4fb97729415521389e7d71f3b4b62 Mon Sep 17 00:00:00 2001 From: Benedikt Rips Date: Mon, 27 Oct 2025 08:41:13 +0100 Subject: [PATCH] hyprland: use previously unused lambda parameter --- modules/services/window-managers/hyprland.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/services/window-managers/hyprland.nix b/modules/services/window-managers/hyprland.nix index 4b6110fe6..72f3625c6 100644 --- a/modules/services/window-managers/hyprland.nix +++ b/modules/services/window-managers/hyprland.nix @@ -385,7 +385,7 @@ in importantPrefixes = cfg.importantPrefixes ++ lib.optional cfg.sourceFirst "source"; pluginsToHyprconf = - _plugins: + plugins: lib.hm.generators.toHyprconf { attrs = { "exec-once" = @@ -393,7 +393,7 @@ in mkEntry = entry: if lib.types.package.check entry then "${entry}/lib/lib${entry.pname}.so" else entry; in - map (p: "hyprctl plugin load ${mkEntry p}") cfg.plugins; + map (p: "hyprctl plugin load ${mkEntry p}") plugins; }; inherit importantPrefixes; };