mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
8 lines
136 B
Nix
8 lines
136 B
Nix
![]() |
{ lib, ... }:
|
||
|
{
|
||
|
options.bad = lib.mkOption {
|
||
|
type = lib.types.nonEmptyListOf (lib.types.submodule { });
|
||
|
default = [ ];
|
||
|
};
|
||
|
}
|