core/nodes/1_lib/tests/modules/disable-module-bad-key.nix
2024-05-21 23:53:33 -04:00

17 lines
216 B
Nix

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