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/node2.nix
T
2026-07-27 06:18:42 +10:00

13 lines
299 B
Nix

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