mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
14 lines
245 B
Nix
14 lines
245 B
Nix
|
{ lib, ... }: let
|
||
|
sub.options.config = lib.mkOption {
|
||
|
type = lib.types.bool;
|
||
|
default = false;
|
||
|
};
|
||
|
in {
|
||
|
options.submodule = lib.mkOption {
|
||
|
type = lib.types.submoduleWith {
|
||
|
modules = [ sub ];
|
||
|
};
|
||
|
default = {};
|
||
|
};
|
||
|
}
|