cluster/lib: introduce testConfig

This commit is contained in:
Max Headroom 2024-07-23 19:02:11 +02:00
parent 8ec13f5c87
commit 0ed4870b65

View file

@ -1,9 +1,15 @@
{ lib, ... }: { lib, ... }:
{ {
options.simulacrum = lib.mkOption { options = {
simulacrum = lib.mkOption {
description = "Whether we are in the Simulacrum."; description = "Whether we are in the Simulacrum.";
type = lib.types.bool; type = lib.types.bool;
default = false; default = false;
}; };
testConfig = lib.mkOption {
type = lib.types.attrs;
readOnly = true;
};
};
} }