summary refs log tree commit diff
path: root/lib/tests/modules/declare-enable.nix
blob: ebee243c756854bc52d33cbbebc32a2648a58323 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ lib, ... }:

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