From a4b15d2ca29787659aa5ac58c141fe15c847634b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Mon, 15 Apr 2024 21:24:22 +0200 Subject: [PATCH] flake-parts: fix merging of all-machines-json --- flakeModules/clan.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flakeModules/clan.nix b/flakeModules/clan.nix index fa4cc981..c1224118 100644 --- a/flakeModules/clan.nix +++ b/flakeModules/clan.nix @@ -50,7 +50,7 @@ in clanInternals = lib.mkOption { type = lib.types.submodule { options = { - all-machines-json = lib.mkOption { type = lib.types.attrsOf lib.types.str; }; + all-machines-json = lib.mkOption { type = lib.types.attrsOf lib.types.unspecified; }; machines = lib.mkOption { type = lib.types.attrsOf (lib.types.attrsOf lib.types.unspecified); }; machinesFunc = lib.mkOption { type = lib.types.attrsOf (lib.types.attrsOf lib.types.unspecified); }; };