rename internal implementation to declare, mirroring apply

This commit is contained in:
Kiara Grouwstra 2025-08-18 10:24:09 +02:00
parent efbe7deddd
commit d066b1d55c
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU
2 changed files with 4 additions and 4 deletions

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 = _: { };
};