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
opencomposite: add meta.platforms (#357198)
[NixPkgs.git]
/
lib
/
tests
/
modules
/
disable-module-bad-key.nix
blob
f50d06f2f03cd422fe1aaa98d0d3aa229880e370
1
{ lib, ... }:
2
let
3
inherit (lib) mkOption types;
4
5
moduleWithKey = { config, ... }: {
6
config = {
7
enable = true;
8
};
9
};
10
in
11
{
12
imports = [
13
./declare-enable.nix
14
];
15
disabledModules = [ { } ];
16
}