23 lines
734 B
Nix
23 lines
734 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.srvos.nixosModules.hardware-hetzner-online-arm
|
|
inputs.self.nixosModules.disko-zfs
|
|
inputs.self.nixosModules.builder
|
|
inputs.self.nixosModules.hercules-ci
|
|
inputs.self.nixosModules.remote-builder
|
|
];
|
|
|
|
# error: failed to start SSH connection
|
|
# https://github.com/nix-community/infra/issues/1416
|
|
services.openssh.settings.MaxStartups = 100;
|
|
|
|
# set in srvos, remove when reinstalling
|
|
networking.hostId = "deadbeef";
|
|
|
|
nixCommunity.remote-builder.key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEmdo1x1QkRepZf7nSe+OdEWX+wOjkBLF70vX9F+xf68 builder";
|
|
|
|
system.stateVersion = "23.11";
|
|
|
|
systemd.network.networks."10-uplink".networkConfig.Address = "2a01:4f9:3051:3962::2";
|
|
}
|