Skip to content

Commit 074d02e

Browse files
committed
build01: switch to new hardware
1 parent 4aebe04 commit 074d02e

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

dnscontrol/dnsconfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ var nix_community_github_pages = [
1313

1414
var hosts = {
1515
"build01": {
16-
ipv4: "65.21.139.242",
17-
ipv6: "2a01:4f9:3b:2946::1"
16+
ipv4: "?",
17+
ipv6: "?"
1818
},
1919
"build02": {
2020
ipv4: "65.21.133.211",

docs/infrastructure.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
#### [`build-box.nix-community.org`](./community-builders.md) - `build01`
44

55
- Provider: Hetzner
6-
- CPU: AMD Ryzen 9 3900 12-Core Processor
7-
- RAM: 128GB DDR4 ECC
6+
- Instance type: [AX162-R](https://www.hetzner.com/dedicated-rootserver/ax162-r)
7+
- CPU: AMD EPYC 9454P 48-Core Processor
8+
- RAM: 256GB DDR5 ECC
89
- Drives: 2 x 1.92TB NVME
910

1011
```json

hosts/build01/default.nix

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ inputs, ... }:
1+
{ inputs, lib, ... }:
22
{
33
imports = [
44
inputs.self.nixosModules.cgroups
@@ -7,15 +7,17 @@
77
inputs.srvos.nixosModules.hardware-hetzner-online-amd
88
];
99

10-
nix.settings.max-jobs = 24;
10+
systemd.watchdog.runtimeTime = lib.mkForce "30s";
1111

12-
nixpkgs.hostPlatform.gcc.arch = "znver2";
12+
nix.settings.max-jobs = 96;
13+
14+
nixpkgs.hostPlatform.gcc.arch = "znver4";
1315

1416
# Emulate riscv64 until we have proper builders
1517
boot.binfmt.emulatedSystems = [ "riscv64-linux" ];
1618
boot.binfmt.preferStaticEmulators = true;
1719

18-
systemd.network.networks."10-uplink".networkConfig.Address = "2a01:4f9:3b:2946::1/64";
20+
systemd.network.networks."10-uplink".networkConfig.Address = "?";
1921

2022
system.stateVersion = "23.11";
2123
}

0 commit comments

Comments
 (0)