Merge pull request #7498 from k0ral/sslh

sslh: argument to -F can no longer be separated from the option by a space

+1 -1
+1 -1
nixos/modules/services/networking/sslh.nix
··· 81 81 description = "Applicative Protocol Multiplexer (e.g. share SSH and HTTPS on the same port)"; 82 82 after = [ "network.target" ]; 83 83 wantedBy = [ "multi-user.target" ]; 84 - serviceConfig.ExecStart = "${pkgs.sslh}/bin/sslh -F ${configFile}"; 84 + serviceConfig.ExecStart = "${pkgs.sslh}/bin/sslh -F${configFile}"; 85 85 serviceConfig.KillMode = "process"; 86 86 serviceConfig.PIDFile = "${cfg.pidfile}"; 87 87 };