infra/hosts/web01/configuration.nix
adisbladis c91f606639 hosts.web01: init
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.
2023-07-05 08:57:43 +00:00

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";
}