nix-super/tests/modules/disable-module-bad-key.nix
2023-08-16 15:46:37 +02:00

16 lines
216 B
Nix

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