factor out function wrapper to module function #9

Closed
kiara wants to merge 4 commits from data-model-factor-out-wrapper into deployment-data-model-with-tests
2 changed files with 4 additions and 4 deletions
Showing only changes of commit d066b1d55c - Show all commits

View file

@ -115,7 +115,7 @@ in
default = {
input-type = submodule application.config.module;
output-type = application-resources;
implementation = application.config.implementation;
declare = application.config.implementation;
};
};
};
@ -152,7 +152,7 @@ in
default = {
input-type = application-resources;
output-type = nixops4Deployment;
implementation = environment.config.implementation;
declare = environment.config.implementation;
};
};
config-mapping = mkOption {
@ -162,7 +162,7 @@ in
default = {
input-type = config.configuration;
output-type = nixops4Deployment;
implementation =
declare =
cfg:
# TODO: check cfg.enable.true
let

View file

@ -37,7 +37,7 @@ in
};
});
};
implementation = mkOption {
declare = mkOption {
type = config.function-type;
default = _: { };
};