23 lines
654 B
Nix
23 lines
654 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.srvos.nixosModules.mixins-nginx
|
|
inputs.srvos.nixosModules.hardware-hetzner-online-amd
|
|
./nixpkgs-update.nix
|
|
./nixpkgs-update-backup.nix
|
|
inputs.self.nixosModules.common
|
|
inputs.self.nixosModules.builder
|
|
inputs.self.nixosModules.disko-raid
|
|
];
|
|
|
|
nixCommunity.disko.raidLevel = 0; # more disk space, we don't have much state to restore anyway
|
|
|
|
networking.hostName = "build02";
|
|
networking.hostId = "af9ccc71";
|
|
networking.nameservers = [ "1.1.1.1" "1.0.0.1" ];
|
|
|
|
systemd.network.networks."10-uplink".networkConfig.Address = "2a01:4f9:3b:41d9::1";
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|