infrastructure/meta/default.nix

23 lines
522 B
Nix
Raw Normal View History

# 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.
2024-02-23 12:20:12 +01:00
lib:
2024-02-23 10:50:50 +01:00
2024-02-23 12:20:12 +01:00
(lib.evalModules {
modules = [
./options.nix
{
network = import ./network.nix;
2024-12-09 10:20:44 +01:00
nodes = import ./nodes;
2024-02-23 12:20:12 +01:00
organization = import ./organization.nix;
}
];
class = "dgnumMeta";
}).config