core/lib/tests/modules/disable-module-bad-key.nix

17 lines
226 B
Nix
Raw Normal View History

2024-05-01 22:14:04 +00:00
{ lib, ... }:
let
inherit (lib) mkOption types;
2024-06-30 08:16:52 +00:00
moduleWithKey =
{ config, ... }:
{
config = {
enable = true;
};
2024-05-01 22:14:04 +00:00
};
in
{
2024-06-30 08:16:52 +00:00
imports = [ ./declare-enable.nix ];
2024-05-01 22:14:04 +00:00
disabledModules = [ { } ];
}