summaryrefslogtreecommitdiffstats
path: root/lib/tests/modules/error-typo-multiple-suggestions.nix
blob: d01d649c3a05b23757521ec83c755e94c0ec4679 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, ... }:

{
  options.foo = lib.mkOption {
    default = false;
    type = lib.types.bool;
  };

  options.bar = lib.mkOption {
    default = false;
    type = lib.types.bool;
  };

  options.baz = lib.mkOption {
    default = false;
    type = lib.types.bool;
  };

  config = {
    far = true;
  };
}