cluster/lib: introduce testConfig
This commit is contained in:
parent
40fd5c4be9
commit
fa0d6f046b
1 changed files with 10 additions and 4 deletions
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue