blob: c8da8273cba1499b3967c593d2f665b88ae939d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ lib, ... }:
{
options.set = {
enable = lib.mkOption {
default = false;
example = true;
type = lib.types.bool;
description = ''
Some descriptive text
'';
};
};
}
|