| 1 | { |
| 2 | imports = [ |
| 3 | ../profiles/hetzner-ax101r.nix |
| 4 | ]; |
| 5 | |
| 6 | nix.settings = { |
| 7 | cores = 24; |
| 8 | max-jobs = 4; |
| 9 | }; |
| 10 | |
| 11 | services.hydra-queue-builder-dev.supportedFeatures = [ "big-parallel" ]; |
| 12 | |
| 13 | networking = { |
| 14 | hostName = "sleepy-brown"; |
| 15 | domain = "builders.nixos.org"; |
| 16 | useDHCP = false; |
| 17 | }; |
| 18 | |
| 19 | systemd.network = { |
| 20 | enable = true; |
| 21 | networks = { |
| 22 | "30-enp193s0f0np0" = { |
| 23 | matchConfig = { |
| 24 | MACAddress = "9c:6b:00:4e:fd:2d"; |
| 25 | Type = "ether"; |
| 26 | }; |
| 27 | linkConfig.RequiredForOnline = true; |
| 28 | networkConfig.Description = "WAN"; |
| 29 | address = [ |
| 30 | "162.55.130.51/26" |
| 31 | "2a01:4f8:271:5c14::1/64" |
| 32 | ]; |
| 33 | routes = [ |
| 34 | { Gateway = "162.55.130.1"; } |
| 35 | { Gateway = "fe80::1"; } |
| 36 | ]; |
| 37 | }; |
| 38 | }; |
| 39 | }; |
| 40 | |
| 41 | system.stateVersion = "24.11"; |
| 42 | } |