kubenix/modules/submodule.nix

49 lines
956 B
Nix
Raw Normal View History

{ config, lib, ... }:
with lib;
{
imports = [ ./base.nix ];
options.submodule = {
name = mkOption {
description = "Module name";
type = types.str;
};
description = mkOption {
description = "Module description";
type = types.str;
default = "";
};
version = mkOption {
description = "Module version";
type = types.str;
default = "1.0.0";
};
tags = mkOption {
description = "List of submodule tags";
type = types.listOf types.str;
2021-05-13 17:27:08 -04:00
default = [ ];
};
exports = mkOption {
description = "Attribute set of functions to export";
type = types.attrs;
2021-05-13 17:27:08 -04:00
default = { };
};
passthru = mkOption {
description = "Attribute set to passthru";
type = types.attrs;
2021-05-13 17:27:08 -04:00
default = { };
};
2021-05-13 17:27:08 -04:00
args._empty = mkOption { };
};
config._module.args.args = config.submodule.args;
2021-05-13 17:27:08 -04:00
config._m.features = [ "submodule" ];
}