brainix/sources/nixpkgs/lib/tests/modules/declare-enable.nix
2026-02-13 17:06:24 +09:00

14 lines
210 B
Nix

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