hyprland: use previously unused lambda parameter

This commit is contained in:
Benedikt Rips
2025-10-27 08:41:13 +01:00
committed by Austin Horstman
parent 5a728e434d
commit 970cd853bf

View File

@@ -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;
};