4 lines
137 B
Nix
4 lines
137 B
Nix
with builtins;
|
|
let nodes = genList (n: n + 1) 8; in
|
|
map (n: ({ name = "c0-${toString n}"; address = "10.1.61.10${toString n}"; })) nodes
|