mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-11 02:07:27 +01:00
19 lines
210 B
Nix
19 lines
210 B
Nix
# Obviously wrong typed
|
|
{
|
|
config.either = {
|
|
int = "foo";
|
|
};
|
|
|
|
config.eitherBehindNullor = {
|
|
int = "foo";
|
|
};
|
|
|
|
config.oneOf = {
|
|
int = "foo";
|
|
};
|
|
|
|
config.number = {
|
|
str = "foo";
|
|
};
|
|
}
|