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
dxvk_1: fix build compatibility with GCC 14 (#360918)
[NixPkgs.git]
/
lib
/
tests
/
modules
/
declare-submoduleWith-path.nix
blob
fa16c12bd2120893006d33ae79f7b20c0f3b55e1
1
{ lib, ... }:
2
{
3
options.submodule = lib.mkOption {
4
type = lib.types.submoduleWith {
5
modules = [
6
./declare-enable.nix
7
];
8
};
9
default = { };
10
};
11
12
config.submodule = ./define-enable.nix;
13
}