18 lines
354 B
Nix
18 lines
354 B
Nix
|
###
|
||
|
# Metadata for the nodes. You can add custom attributes, they are
|
||
|
# accessible through the specialArg meta in the config.
|
||
|
|
||
|
lib:
|
||
|
|
||
|
(lib.evalModules {
|
||
|
modules = [
|
||
|
./options.nix
|
||
|
{
|
||
|
network = import ./network.nix;
|
||
|
nodes = import ./nodes.nix;
|
||
|
organization = import ./organization.nix;
|
||
|
}
|
||
|
];
|
||
|
class = "dgnumMeta";
|
||
|
}).config
|