nixpkgs/lib/tests/modules/freeform-deprecated-malicous-wrong.nix
2025-09-06 12:29:16 +02:00

19 lines
210 B
Nix

# Obviously wrong typed
{
config.either = {
int = "foo";
};
config.eitherBehindNullor = {
int = "foo";
};
config.oneOf = {
int = "foo";
};
config.number = {
str = "foo";
};
}