nixpkgs/lib/tests/modules/declare-enable-nested.nix

15 lines
214 B
Nix

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