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