
This machine is intended to host web applications. Initially [Lemmy](https://join-lemmy.org/), but perhaps more down the line. The initial PR only deals with setting up the machine and required infra like DNS, not setting up Lemmy itself which will be a follow-up.
15 lines
343 B
Nix
15 lines
343 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.disko.nixosModules.disko
|
|
./hardware-configuration.nix
|
|
inputs.srvos.nixosModules.mixins-nginx
|
|
inputs.srvos.nixosModules.hardware-hetzner-cloud
|
|
inputs.self.nixosModules.common
|
|
];
|
|
|
|
networking.hostName = "web01";
|
|
networking.hostId = "1cfd5aa3";
|
|
|
|
system.stateVersion = "23.05";
|
|
}
|