about summary refs log tree commit diff
path: root/nixpkgs/lib/tests/modules/disable-module-bad-key.nix
blob: f50d06f2f03cd422fe1aaa98d0d3aa229880e370 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, ... }:
let
  inherit (lib) mkOption types;

  moduleWithKey = { config, ... }: {
    config = {
      enable = true;
    };
  };
in
{
  imports = [
    ./declare-enable.nix
  ];
  disabledModules = [ { } ];
}