+2
-1
docs/src/utils/mkSimpleProxy.md
+2
-1
docs/src/utils/mkSimpleProxy.md
···
+4
-4
global/utils.nix
+4
-4
global/utils.nix
·········assert lib.assertMsg (port != null || socketPath != null) "one of port or socketPath must be specified";assert lib.assertMsg (!(port != null && socketPath != null)) "only one of port or socketPath may be specified at the same time";+assert lib.assertMsg (socketPath != null -> host == "localhost") "setting host has no effect when socketPath is set";assert lib.assertMsg (port != null -> builtins.isInt port) "port must be an integer if specified";·········