From 7234b55c40e3a9a3e6948fcfd8191383f77e47bd Mon Sep 17 00:00:00 2001 From: Kiara Grouwstra Date: Tue, 22 Jul 2025 13:43:09 +0200 Subject: [PATCH] fix application resource type --- deployment/data-model.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/data-model.nix b/deployment/data-model.nix index 9fbca7ca..f03f97af 100644 --- a/deployment/data-model.nix +++ b/deployment/data-model.nix @@ -106,7 +106,7 @@ in # TODO: maybe transpose, and group the resources by type instead type = functionTo ( attrsOf ( - attrTag (lib.mapAttrs (_name: resource: mkOption { type = resource.request; }) config.resources) + attrTag (lib.mapAttrs (_name: resource: mkOption { type = types.submodule resource.request; }) config.resources) ) ); };