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

9 lines
163 B
Nix

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