forked from tangled.org/core
Monorepo for Tangled

nix: change default vm knot port to 6444

Signed-off-by: Seongmin Lee <git@boltless.me>

authored by boltless.me and committed by Tangled 4cafba2a 59f43eb1

Changed files
+5 -5
docs
nix
+1 -1
docs/hacking.md
··· 117 # type `poweroff` at the shell to exit the VM 118 ``` 119 120 - This starts a knot on port 6000, a spindle on port 6555 121 with `ssh` exposed on port 2222. 122 123 Once the services are running, head to
··· 117 # type `poweroff` at the shell to exit the VM 118 ``` 119 120 + This starts a knot on port 6444, a spindle on port 6555 121 with `ssh` exposed on port 2222. 122 123 Once the services are running, head to
+4 -4
nix/vm.nix
··· 48 # knot 49 { 50 from = "host"; 51 - host.port = 6000; 52 - guest.port = 6000; 53 } 54 # spindle 55 { ··· 87 motd = "Welcome to the development knot!\n"; 88 server = { 89 owner = envVar "TANGLED_VM_KNOT_OWNER"; 90 - hostname = envVarOr "TANGLED_VM_KNOT_HOST" "localhost:6000"; 91 plcUrl = plcUrl; 92 jetstreamEndpoint = jetstream; 93 - listenAddr = "0.0.0.0:6000"; 94 }; 95 }; 96 services.tangled.spindle = {
··· 48 # knot 49 { 50 from = "host"; 51 + host.port = 6444; 52 + guest.port = 6444; 53 } 54 # spindle 55 { ··· 87 motd = "Welcome to the development knot!\n"; 88 server = { 89 owner = envVar "TANGLED_VM_KNOT_OWNER"; 90 + hostname = envVarOr "TANGLED_VM_KNOT_HOST" "localhost:6444"; 91 plcUrl = plcUrl; 92 jetstreamEndpoint = jetstream; 93 + listenAddr = "0.0.0.0:6444"; 94 }; 95 }; 96 services.tangled.spindle = {