depot/third_party/nixpkgs/lib/tests/modules/declare-variants.nix

10 lines
166 B
Nix

{ lib, moduleType, ... }:
let
inherit (lib) mkOption types;
in
{
options.variants = mkOption {
type = types.lazyAttrsOf moduleType;
default = { };
};
}