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
Merge pull request #298967 from vbgl/ocaml-5.2.0
[NixPkgs.git]
/
lib
/
tests
/
modules
/
merge-typeless-option.nix
blob
627d90b15db2088b0ff165a190b7baa71e980a8a
1
{ lib, ... }:
2
3
let
4
typeless =
5
{ lib, ... }:
6
7
{
8
options.group = lib.mkOption { };
9
};
10
childOfTypeless =
11
{ lib, ... }:
12
13
{
14
options.group.enable = lib.mkEnableOption "nothing";
15
};
16
in
17
18
{
19
imports = [
20
typeless
21
childOfTypeless
22
];
23
24
config.group.enable = false;
25
}