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

7 lines
136 B
Nix

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