diff --git a/cluster/lib/testing.nix b/cluster/lib/testing.nix index 6c96b37..90c9106 100644 --- a/cluster/lib/testing.nix +++ b/cluster/lib/testing.nix @@ -1,9 +1,15 @@ { lib, ... }: { - options.simulacrum = lib.mkOption { - description = "Whether we are in the Simulacrum."; - type = lib.types.bool; - default = false; + options = { + simulacrum = lib.mkOption { + description = "Whether we are in the Simulacrum."; + type = lib.types.bool; + default = false; + }; + testConfig = lib.mkOption { + type = lib.types.attrs; + readOnly = true; + }; }; }