20 lines
460 B
Nix
20 lines
460 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
|
|
inputs.self.nixosModules.cachix-deploy
|
|
./samba.nix
|
|
./postgresql.nix
|
|
./pgbackrest.nix
|
|
./lemmy.nix
|
|
];
|
|
|
|
networking.hostName = "web01";
|
|
networking.hostId = "1cfd5aa3";
|
|
|
|
system.stateVersion = "23.05";
|
|
}
|