1 2 3 4 5 6 7 8 9
{ lib, moduleType, ... }: let inherit (lib) mkOption types; in { options.variants = mkOption { type = types.lazyAttrsOf moduleType; default = {}; }; }