core/lib/tests/modules/declare-enable-nested.nix
2024-05-01 18:26:04 -04:00

15 lines
214 B
Nix

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