From c6f82f2e0a26dc478045317d8c03e801a857b140 Mon Sep 17 00:00:00 2001 From: Kiara Grouwstra Date: Fri, 15 Aug 2025 19:38:14 +0200 Subject: [PATCH] swap out the input types to hopefully trigger an evaluation error - unfortunately does not seem to work yet --- deployment/data-model.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/deployment/data-model.nix b/deployment/data-model.nix index 0bec8ad4..15401477 100644 --- a/deployment/data-model.nix +++ b/deployment/data-model.nix @@ -108,7 +108,8 @@ in type = functionType; readOnly = true; default = { - input-type = submodule application.config.module; + # input-type = submodule application.config.module; + input-type = types.int; output-type = application-resources; }; }; @@ -144,7 +145,8 @@ in type = functionType; # readOnly = true; default = { - input-type = application-resources; + # input-type = application-resources; + input-type = types.int; output-type = nixops4Deployment; }; };