infrastructure/meta/default.nix
sinavir 75e09e73a2
Some checks failed
Check meta / check_meta (push) Failing after 20s
Check meta / check_dns (push) Failing after 20s
Check workflows / check_workflows (push) Successful in 23s
Run pre-commit on all files / pre-commit (push) Successful in 34s
feat: wip
2024-12-16 10:50:47 +01:00

22 lines
513 B
Nix

# SPDX-FileCopyrightText: 2024 Tom Hubrecht <tom.hubrecht@dgnum.eu>
# SPDX-FileContributor: Maurice Debray <maurice.debray@dgnum.eu>
#
# SPDX-License-Identifier: EUPL-1.2
###
# 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;
organization = import ./organization.nix;
}
];
class = "dgnumMeta";
}