From 83e2367b221e4ee12419b34fd816ef7220b3a440 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Tue, 12 Nov 2024 14:46:16 +0100 Subject: [PATCH] Chore: fix export of machines clan schema --- nixosModules/clanCore/schema.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixosModules/clanCore/schema.nix b/nixosModules/clanCore/schema.nix index 8b3e40be3..3531d9a45 100644 --- a/nixosModules/clanCore/schema.nix +++ b/nixosModules/clanCore/schema.nix @@ -6,7 +6,7 @@ in options.clanSchema = lib.mkOption { type = lib.types.attrs; description = "The json schema for the .clan options namespace"; - default = jsonschema.parseOptions options.clan; + default = jsonschema.parseOptions options.clan { }; defaultText = lib.literalExpression "jsonschema.schemaToJSON options.clan"; }; }