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

18 lines
232 B
Nix

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