repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vuls: init at 0.27.0
[NixPkgs.git]
/
lib
/
tests
/
modules
/
error-mkOption-in-submodule-config.nix
blob
91ac3d65780a5156a48f96b7083fda2f152d98fb
1
{ lib, ... }:
2
let
3
inherit (lib) mkOption;
4
in
5
{
6
options.sub = lib.mkOption {
7
type = lib.types.submodule {
8
wrong2 = mkOption {};
9
};
10
default = {};
11
};
12
}