nixos/git-daemon: fix 'exportAll' option

+1 -1
+1 -1
nixos/modules/services/networking/git-daemon.nix
··· 122 122 + (optionalString (cfg.basePath != "") "--base-path=${cfg.basePath} ") 123 123 + (optionalString (cfg.listenAddress != "") "--listen=${cfg.listenAddress} ") 124 124 + "--port=${toString cfg.port} --user=${cfg.user} --group=${cfg.group} ${cfg.options} " 125 - + "--verbose " + (optionalString cfg.exportAll "--export-all") + concatStringsSep " " cfg.repositories; 125 + + "--verbose " + (optionalString cfg.exportAll "--export-all ") + concatStringsSep " " cfg.repositories; 126 126 }; 127 127 128 128 };