tlaternet-server/README.md

38 lines
838 B
Markdown
Raw Normal View History

2019-11-26 23:19:19 +00:00
# tlater.net server configuration
This is the NixOS configuration for [tlater.net](https://tlater.net/).
## Testing
### Building
Build the VM with:
2019-11-26 23:19:19 +00:00
```
nixos-rebuild build-vm --flake '.#vm'
2019-11-26 23:19:19 +00:00
```
### Running
2021-04-25 02:29:01 +01:00
*Note: M-2 will bring up a console for poweroff and such*
Running should *mostly* be as simple as running the command the build
script echos.
2019-11-26 23:19:19 +00:00
One caveat: create a larger disk image first. This can be done by
running the following in the repository root:
```bash
qemu-img create -f qcow2 ./tlaternet.qcow2 20G
2019-11-26 23:19:19 +00:00
```
Everything else should be handled by the devShell.
### New services
Whenever a new service is added, append an appropriate
`,hostfwd=::3<port>:<port>` to the `QEMU_NET_OPTS` specified in
`flake.nix` to bind the service to a host port.
There is no way to test this without binding to the host port, sadly.