diff --git a/modules/shared/syscfg/default.nix b/modules/shared/syscfg/default.nix index 67f62f2..598aa81 100644 --- a/modules/shared/syscfg/default.nix +++ b/modules/shared/syscfg/default.nix @@ -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 = {};