summaryrefslogtreecommitdiffstats
path: root/lib/tests/modules/error-typo-outside-with-nested.nix
blob: d4f181673c50b848735c412103aff9492dd96818 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, ... }:

{
  options.set = {
    enable = lib.mkOption {
      default = false;
      example = true;
      type = lib.types.bool;
      description = ''
        Some descriptive text
      '';
    };
  };

  config = {
    sea.enable = true;
  };
}