This repository has been archived on 2026-07-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nixos/test-lab/ha/node1.nix
T
2026-07-27 06:18:42 +10:00

13 lines
299 B
Nix

{ ... }:
# ha-test-node1: VMID 200, 192.168.2.200/24
{
networking.hostName = "ha-test-node1";
networking.hostId = "a1b2c3d4"; # random, required by ZFS (not used here) but harmless
networking.interfaces.ens18.ipv4.addresses = [{
address = "192.168.2.200";
prefixLength = 24;
}];
}