architect: Added architect.networks option attribute set

This commit is contained in:
Giulio De Pasquale 2023-05-12 12:32:29 +02:00
parent dc9dfd66ed
commit ce8efa3371

View File

@ -3,7 +3,8 @@
with lib; with lib;
{ {
options.architect.firewall = { options.architect = {
firewall = {
openTCP = mkOption { openTCP = mkOption {
type = types.listOf types.int; type = types.listOf types.int;
default = [ ]; default = [ ];
@ -22,4 +23,40 @@ with lib;
}; };
}; };
networks = mkOption {
type = types.attrsOf (types.submodule {
options = {
interface = mkOption {
type = types.str;
description = "The network interface name.";
};
net = mkOption {
type = types.str;
description = "The network address in CIDR format.";
};
devices = mkOption {
type = types.attrsOf (types.submodule {
options = {
address = mkOption {
type = types.str;
description = "The IP address of the device.";
};
hostname = mkOption {
type = types.str;
description = "The hostname of the device.";
};
};
});
default = { };
description = "An attribute set of devices with their configurations.";
};
};
});
default = { };
description = "An attribute set of networks with their configurations.";
};
};
} }