diff --git a/modules/services/window-managers/fluxbox.nix b/modules/services/window-managers/fluxbox.nix index 99dfa50e..c06b14d6 100644 --- a/modules/services/window-managers/fluxbox.nix +++ b/modules/services/window-managers/fluxbox.nix @@ -107,8 +107,7 @@ in { mkIf (cfg.windowmenu != "") { text = cfg.windowmenu; }; }; - xsession.windowManager.command = concatStringsSep " " - ([ "${cfg.package}/bin/fluxbox" ] - ++ escapeShellArgs (remove "" cfg.extraCommandLineArgs)); + xsession.windowManager.command = escapeShellArgs + ([ "${cfg.package}/bin/fluxbox" ] ++ remove "" cfg.extraCommandLineArgs); }; }