mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
11 lines
166 B
Nix
11 lines
166 B
Nix
![]() |
{ lib, moduleType, ... }:
|
||
|
let
|
||
|
inherit (lib) mkOption types;
|
||
|
in
|
||
|
{
|
||
|
options.variants = mkOption {
|
||
|
type = types.lazyAttrsOf moduleType;
|
||
|
default = { };
|
||
|
};
|
||
|
}
|