forked from Fediversity/Fediversity
fix application-requirements
This commit is contained in:
parent
a6fc12709d
commit
7ec11ebde8
1 changed files with 6 additions and 10 deletions
|
@ -16,15 +16,6 @@ let
|
||||||
;
|
;
|
||||||
|
|
||||||
functionType = import ./function.nix;
|
functionType = import ./function.nix;
|
||||||
application-requirements = {
|
|
||||||
_class = "fediversity-application-requirements";
|
|
||||||
options.resources = mkOption {
|
|
||||||
# TODO: maybe transpose, and group the resources by type instead
|
|
||||||
type = attrsOf (
|
|
||||||
attrTag (lib.mapAttrs (_name: resource: mkOption { type = resource.request; }) config.resources)
|
|
||||||
);
|
|
||||||
};
|
|
||||||
};
|
|
||||||
nixops4Deployment = inputs.nixops4.modules.nixops4Deployment.default;
|
nixops4Deployment = inputs.nixops4.modules.nixops4Deployment.default;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
@ -83,7 +74,12 @@ in
|
||||||
};
|
};
|
||||||
resources = mkOption {
|
resources = mkOption {
|
||||||
description = "Mapping of application configuration to deployment resources, a description of what an application needs to run";
|
description = "Mapping of application configuration to deployment resources, a description of what an application needs to run";
|
||||||
type = functionTo (types.submodule application-requirements);
|
# TODO: maybe transpose, and group the resources by type instead
|
||||||
|
type = functionTo (
|
||||||
|
attrsOf (
|
||||||
|
attrTag (lib.mapAttrs (_name: resource: mkOption { type = resource.request; }) config.resources)
|
||||||
|
)
|
||||||
|
);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue