core/lib/tests/modules/declare-variants.nix

10 lines
163 B
Nix
Raw Normal View History

2024-05-01 22:14:04 +00:00
{ lib, moduleType, ... }:
let inherit (lib) mkOption types;
in
{
options.variants = mkOption {
type = types.lazyAttrsOf moduleType;
default = {};
};
}