1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00
nixpkgs/lib/tests/modules/error-nonEmptyListOf-submodule.nix
2024-01-30 21:32:34 +03:00

8 lines
136 B
Nix

{ lib, ... }:
{
options.bad = lib.mkOption {
type = lib.types.nonEmptyListOf (lib.types.submodule { });
default = [ ];
};
}