2020-09-02 22:34:13 +02:00
|
|
|
{ lib, ... }: {
|
|
|
|
|
|
|
|
options.foo = lib.mkOption {
|
|
|
|
default = {};
|
|
|
|
type = lib.types.submodule {
|
2020-11-30 20:04:03 +01:00
|
|
|
_module.checks.test = {
|
2020-11-30 22:38:56 +01:00
|
|
|
check = false;
|
2020-09-02 22:34:13 +02:00
|
|
|
message = "Assertion failed";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|