about summary refs log tree commit diff
path: root/nixpkgs/lib/tests/modules/error-nonEmptyListOf-submodule.nix
blob: 1189e8891560ba3d7dc49edfc469a815df410c7d (plain) (blame)
1
2
3
4
5
6
7
{ lib, ... }:
{
  options.bad = lib.mkOption {
    type = lib.types.nonEmptyListOf (lib.types.submodule { });
    default = [ ];
  };
}