mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 08:00:06 +01:00
43 lines
827 B
Nix
43 lines
827 B
Nix
{ 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;
|
|
default = [];
|
|
};
|
|
|
|
passthru = mkOption {
|
|
description = "Attribute set to passthru to parent";
|
|
default = {};
|
|
type = types.attrs;
|
|
};
|
|
|
|
args._empty = mkOption {};
|
|
};
|
|
|
|
config._module.features = ["submodule"];
|
|
config._module.args.args = config.submodule.args;
|
|
}
|