Files
infra/1-nixos-node/0-install-nixos.md

8 lines
270 B
Markdown

Follow steps at https://nixos.org/manual/nixos/stable/#sec-installation-manual-summary
Ensure that ssh is enabled and the hostname is set
```
services.openssh.enable = true;
services.openssh.settings.PermitRootLogin = "yes";
networking.hostName = "jaglan-beta-m01";
```