This commit is contained in:
soraefir
2026-05-04 23:19:33 +02:00
parent 8876b63c7b
commit c779c1760b

View File

@@ -102,12 +102,12 @@ let
type = types.str;
default = "/media/data";
};
containers = lib.mkOption {
type = lib.types.attrsOf (lib.types.submodule {
containers = mkOption {
type = types.attrsOf (types.submodule {
options = {
enable = {type = types.bool;default = false;};
port = lib.mkOption { type = lib.types.port; };
special_param = lib.mkOption { type = lib.types.str; default = ""; };
enable = mkOption {type = types.bool;default = false;};
port = mkOption { type = types.port; };
extraParam = mkOption { type = types.str; default = ""; };
};
});
default = {};