nixpkgs/lib/tests/modules/options-type-error-typical.nix
Robert Hensing 0d472a6201 lib/modules: Report a good error when option tree has bare type
Note that this removes the possibility of declaring an option
named `_type`.
2023-08-14 10:44:56 +02:00

6 lines
65 B
Nix

{ lib, ... }: {
options = {
result = lib.types.str;
};
}