depot/third_party/nixpkgs/lib/tests/modules/disable-module-bad-key.nix

17 lines
216 B
Nix
Raw Normal View History

{ lib, ... }:
let
inherit (lib) mkOption types;
moduleWithKey = { config, ... }: {
config = {
enable = true;
};
};
in
{
imports = [
./declare-enable.nix
];
disabledModules = [ { } ];
}